Skip to content

Commit ec42fd5

Browse files
chore(main): release crosspost 0.6.2 (#47)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1a2dd0a commit ec42fd5

6 files changed

+13
-6
lines changed

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## [0.6.2](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.6.1...crosspost-v0.6.2) (2025-02-19)
4+
5+
6+
### Bug Fixes
7+
8+
* Ensure newlines are not escaped in Bluesky messages ([#46](https://github.com/humanwhocodes/crosspost/issues/46)) ([1a2dd0a](https://github.com/humanwhocodes/crosspost/commit/1a2dd0a2fcfa8c8907b861ce656e540e04721922))
9+
310
## [0.6.1](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.6.0...crosspost-v0.6.1) (2025-02-18)
411

512

jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanwhocodes/crosspost",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
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.6.1",
3+
"version": "0.6.2",
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.6.1)", // x-release-please-version
95+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.6.2)", // x-release-please-version
9696
},
9797
body: JSON.stringify({
9898
content: message,

0 commit comments

Comments
 (0)