Skip to content

Commit 79aaa05

Browse files
chore(main): release crosspost 0.9.0 (#70)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 50a07f4 commit 79aaa05

7 files changed

+20
-7
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.8.0"
2+
".": "0.9.0"
33
}

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.9.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.8.0...crosspost-v0.9.0) (2025-03-31)
4+
5+
6+
### Features
7+
8+
* Add MCP server to allow posting from AI agents ([#72](https://github.com/humanwhocodes/crosspost/issues/72)) ([9c046f2](https://github.com/humanwhocodes/crosspost/commit/9c046f2a662717adfbefea5e15bac201d835b17e))
9+
* Add signal option to post() ([#69](https://github.com/humanwhocodes/crosspost/issues/69)) ([ae04256](https://github.com/humanwhocodes/crosspost/commit/ae04256d73430ea38101b76cd6cd661c356856c4))
10+
11+
12+
### Bug Fixes
13+
14+
* **deps:** update dependency tlds to v1.256.0 ([#71](https://github.com/humanwhocodes/crosspost/issues/71)) ([50a07f4](https://github.com/humanwhocodes/crosspost/commit/50a07f4e31c1fc7e896a918e29849fd8d17771d6))
15+
316
## [0.8.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.7.0...crosspost-v0.8.0) (2025-03-21)
417

518

jsr.json

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

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

src/mcp-server.js

+1-1
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.0.1"; // x-release-please-version
26+
const version = "0.9.0"; // x-release-please-version
2727

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

src/strategies/discord.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export class DiscordStrategy {
163163
headers: {
164164
Authorization: `Bot ${this.#options.botToken}`,
165165
"User-Agent":
166-
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.8.0)", // x-release-please-version
166+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.9.0)", // x-release-please-version
167167
},
168168
body: formData,
169169
signal: postOptions?.signal,

0 commit comments

Comments
 (0)