Skip to content

Commit 511bad2

Browse files
chore(main): release crosspost 0.7.0 (#53)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 79ecb46 commit 511bad2

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.3"
2+
".": "0.7.0"
33
}

CHANGELOG.md

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

3+
## [0.7.0](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.6.3...crosspost-v0.7.0) (2025-02-26)
4+
5+
6+
### Features
7+
8+
* Post to Discord via webhook ([#52](https://github.com/humanwhocodes/crosspost/issues/52)) ([820aefe](https://github.com/humanwhocodes/crosspost/commit/820aefe6ca8e05d64a8ce9be8cab3368c6156e33))
9+
310
## [0.6.3](https://github.com/humanwhocodes/crosspost/compare/crosspost-v0.6.2...crosspost-v0.6.3) (2025-02-19)
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.3",
3+
"version": "0.7.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.6.3",
3+
"version": "0.7.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.6.3)", // x-release-please-version
95+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v0.7.0)", // x-release-please-version
9696
},
9797
body: JSON.stringify({
9898
content: message,

0 commit comments

Comments
 (0)