Skip to content

Commit f6ded9f

Browse files
chore(main): release crosspost 0.6.0 (#42)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 81168c7 commit f6ded9f

6 files changed

+18
-6
lines changed

.release-please-manifest.json

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

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.5.0...crosspost-v0.6.0) (2025-02-18)
4+
5+
6+
### Features
7+
8+
* Add strategy to post to Discord ([#43](https://github.com/humanwhocodes/crosspost/issues/43)) ([81168c7](https://github.com/humanwhocodes/crosspost/commit/81168c7bab230b55988f1a73f35abdeee7d82c0a))
9+
10+
11+
### Bug Fixes
12+
13+
* **deps:** update dependency @humanwhocodes/env to v4 ([#32](https://github.com/humanwhocodes/crosspost/issues/32)) ([7a2f838](https://github.com/humanwhocodes/crosspost/commit/7a2f83814f5b8e5936e5facd0b0dd3140451f3e4))
14+
315
## [0.5.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.4.0...crosspost-v0.5.0) (2025-02-14)
416

517

jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanwhocodes/crosspost",
3-
"version": "0.5.0",
3+
"version": "0.6.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.5.0",
3+
"version": "0.6.0",
44
"description": "A utility to post across multiple social networks.",
55
"type": "module",
66
"main": "dist/cjs/index.cjs",

src/strategies/discord.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class DiscordStrategy {
9292
Authorization: `Bot ${this.#options.botToken}`,
9393
"Content-Type": "application/json",
9494
"User-Agent":
95-
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.5.0)", // x-release-please-version
95+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.6.0)", // x-release-please-version
9696
},
9797
body: JSON.stringify({
9898
content: message,

0 commit comments

Comments
 (0)