Skip to content

Commit 3058fb1

Browse files
chore(main): release crosspost 0.12.0 (#85)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3d1e09b commit 3058fb1

File tree

9 files changed

+24
-10
lines changed

9 files changed

+24
-10
lines changed

.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.11.1"
2+
".": "0.12.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.12.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.11.1...crosspost-v0.12.0) (2025-05-02)
4+
5+
6+
### Features
7+
8+
* Detect hashtags in Bluesky messages ([#84](https://github.com/humanwhocodes/crosspost/issues/84)) ([c9f0e77](https://github.com/humanwhocodes/crosspost/commit/c9f0e774c29fe10229ef68a1009d8215c2a20137))
9+
* Generate URL from post response ([#89](https://github.com/humanwhocodes/crosspost/issues/89)) ([ba10434](https://github.com/humanwhocodes/crosspost/commit/ba104347652beea49db3237316d8ee9032a35026))
10+
11+
12+
### Bug Fixes
13+
14+
* **deps:** update dependency @humanwhocodes/env to v4.0.1 ([#90](https://github.com/humanwhocodes/crosspost/issues/90)) ([3d1e09b](https://github.com/humanwhocodes/crosspost/commit/3d1e09b77f8b4fdba03cc3f8af1804c2289c2629))
15+
* **deps:** update dependency twitter-api-v2 to v1.22.0 ([#88](https://github.com/humanwhocodes/crosspost/issues/88)) ([4006c99](https://github.com/humanwhocodes/crosspost/commit/4006c990aac4afd0d4004388c808e629617b87ce))
16+
317
## [0.11.1](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.11.0...crosspost-v0.11.1) (2025-04-16)
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.11.1",
3+
"version": "0.12.0",
44
"exports": "./dist/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.11.1",
3+
"version": "0.12.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
@@ -24,7 +24,7 @@ import { Client } from "./client.js";
2424
// Helpers
2525
//-----------------------------------------------------------------------------
2626

27-
const version = "0.11.1"; // x-release-please-version
27+
const version = "0.12.0"; // x-release-please-version
2828

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

src/strategies/discord-webhook.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export class DiscordWebhookStrategy {
181181
method: "POST",
182182
headers: {
183183
"User-Agent":
184-
"Crosspost (https://github.com/humanwhocodes/crosspost, v0.11.1)", // x-release-please-version
184+
"Crosspost (https://github.com/humanwhocodes/crosspost, v0.12.0)", // x-release-please-version
185185
},
186186
body: formData,
187187
signal: postOptions?.signal,

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 (https://github.com/humanwhocodes/crosspost, v0.11.1)", // x-release-please-version
173+
"Crosspost (https://github.com/humanwhocodes/crosspost, v0.12.0)", // x-release-please-version
174174
},
175175
body: formData,
176176
signal: postOptions?.signal,

src/strategies/telegram.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class TelegramStrategy {
134134
method: "POST",
135135
headers: {
136136
"Content-Type": "application/json",
137-
"User-Agent": "Crosspost v0.11.1", // x-release-please-version
137+
"User-Agent": "Crosspost v0.12.0", // x-release-please-version
138138
},
139139
body,
140140
signal: postOptions?.signal,
@@ -182,7 +182,7 @@ export class TelegramStrategy {
182182
method: "POST",
183183
headers: {
184184
"User-Agent":
185-
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.11.1)", // x-release-please-version
185+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.12.0)", // x-release-please-version
186186
},
187187
body: formData,
188188
signal: postOptions?.signal,

0 commit comments

Comments
 (0)