Skip to content

Commit bd1f780

Browse files
chore(main): release crosspost 0.17.0 (#135)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 798ebc4 commit bd1f780

File tree

9 files changed

+22
-10
lines changed

9 files changed

+22
-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.16.0"
2+
".": "0.17.0"
33
}

CHANGELOG.md

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

3+
## [0.17.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.16.0...crosspost-v0.17.0) (2025-08-22)
4+
5+
6+
### Features
7+
8+
* Add -v/--version flags to CLI ([#137](https://github.com/humanwhocodes/crosspost/issues/137)) ([798ebc4](https://github.com/humanwhocodes/crosspost/commit/798ebc48791856d8dcbd21a1f5316af10d818986))
9+
10+
11+
### Bug Fixes
12+
13+
* **deps:** update dependency dotenv to v17 ([#126](https://github.com/humanwhocodes/crosspost/issues/126)) ([e84a6bd](https://github.com/humanwhocodes/crosspost/commit/e84a6bddd9e8d0393b22b7ab86c8d4e35ede66de))
14+
315
## [0.16.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.15.1...crosspost-v0.16.0) (2025-08-15)
416

517

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.16.0",
3+
"version": "0.17.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.16.0",
3+
"version": "0.17.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
@@ -75,7 +75,7 @@ ${message}
7575
// Helpers
7676
//-----------------------------------------------------------------------------
7777

78-
const version = "0.16.0"; // x-release-please-version
78+
const version = "0.17.0"; // x-release-please-version
7979

8080
const postSchema = {
8181
message: z.string(),

src/strategies/discord-webhook.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export class DiscordWebhookStrategy {
198198
method: "POST",
199199
headers: {
200200
"User-Agent":
201-
"Crosspost (https://github.com/humanwhocodes/crosspost, v0.16.0)", // x-release-please-version
201+
"Crosspost (https://github.com/humanwhocodes/crosspost, v0.17.0)", // x-release-please-version
202202
},
203203
body: formData,
204204
signal: postOptions?.signal,

src/strategies/discord.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export class DiscordStrategy {
187187
headers: {
188188
Authorization: `Bot ${this.#options.botToken}`,
189189
"User-Agent":
190-
"Crosspost (https://github.com/humanwhocodes/crosspost, v0.16.0)", // x-release-please-version
190+
"Crosspost (https://github.com/humanwhocodes/crosspost, v0.17.0)", // x-release-please-version
191191
},
192192
body: formData,
193193
signal: postOptions?.signal,

src/strategies/telegram.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class TelegramStrategy {
141141
method: "POST",
142142
headers: {
143143
"Content-Type": "application/json",
144-
"User-Agent": "Crosspost v0.16.0", // x-release-please-version
144+
"User-Agent": "Crosspost v0.17.0", // x-release-please-version
145145
},
146146
body,
147147
signal: postOptions?.signal,
@@ -189,7 +189,7 @@ export class TelegramStrategy {
189189
method: "POST",
190190
headers: {
191191
"User-Agent":
192-
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.16.0)", // x-release-please-version
192+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.17.0)", // x-release-please-version
193193
},
194194
body: formData,
195195
signal: postOptions?.signal,

0 commit comments

Comments
 (0)