Skip to content

Commit d4b0655

Browse files
chore(main): release crosspost 0.10.0 (#73)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 198eac9 commit d4b0655

7 files changed

Lines changed: 21 additions & 7 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.9.0"
2+
".": "0.10.0"
33
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.10.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.9.0...crosspost-v0.10.0) (2025-04-04)
4+
5+
6+
### Features
7+
8+
* Add id and display name to strategies ([#75](https://github.com/humanwhocodes/crosspost/issues/75)) ([37d7783](https://github.com/humanwhocodes/crosspost/commit/37d77839f995b76c611b74f238cf28d63be308a1))
9+
* Allow specifying path to .env file in CROSSPOST_DOTENV ([#74](https://github.com/humanwhocodes/crosspost/issues/74)) ([bce2877](https://github.com/humanwhocodes/crosspost/commit/bce2877aba46882e5c231cc7492cbf1bb75d1513))
10+
* Claude compatibility for MCP server ([#76](https://github.com/humanwhocodes/crosspost/issues/76)) ([198eac9](https://github.com/humanwhocodes/crosspost/commit/198eac954e2516560adbe2b352548d58ecbc8212))
11+
12+
13+
### Bug Fixes
14+
15+
* JSR package files ([868dc58](https://github.com/humanwhocodes/crosspost/commit/868dc58a0f1ffbdbc5772d4c65b8185005c0f796))
16+
317
## [0.9.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.8.0...crosspost-v0.9.0) (2025-03-31)
418

519

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanwhocodes/crosspost",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanwhocodes/crosspost",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "A utility to post across multiple social networks.",
55
"type": "module",
66
"main": "dist/index.js",

src/mcp-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { Client } from "./client.js";
2323
// Helpers
2424
//-----------------------------------------------------------------------------
2525

26-
const version = "0.9.0"; // x-release-please-version
26+
const version = "0.10.0"; // x-release-please-version
2727

2828
const postSchema = {
2929
message: z.string(),

src/strategies/discord.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class DiscordStrategy {
170170
headers: {
171171
Authorization: `Bot ${this.#options.botToken}`,
172172
"User-Agent":
173-
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.9.0)", // x-release-please-version
173+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.10.0)", // x-release-please-version
174174
},
175175
body: formData,
176176
signal: postOptions?.signal,

0 commit comments

Comments
 (0)