Skip to content

Commit 39091f8

Browse files
chore(main): release crosspost 1.0.2 (#153)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2476d1d commit 39091f8

File tree

9 files changed

+17
-10
lines changed

9 files changed

+17
-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-
".": "1.0.1"
2+
".": "1.0.2"
33
}

CHANGELOG.md

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

3+
## [1.0.2](https://github.com/humanwhocodes/crosspost/compare/crosspost-v1.0.1...crosspost-v1.0.2) (2025-11-11)
4+
5+
6+
### Bug Fixes
7+
8+
* Drop dotenv package and use native process.loadEnvFile ([#152](https://github.com/humanwhocodes/crosspost/issues/152)) ([2476d1d](https://github.com/humanwhocodes/crosspost/commit/2476d1d7bb4c9da043c579184ee8ebb060e9257e))
9+
310
## [1.0.1](https://github.com/humanwhocodes/crosspost/compare/crosspost-v1.0.0...crosspost-v1.0.1) (2025-10-15)
411

512

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": "1.0.1",
3+
"version": "1.0.2",
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": "1.0.1",
3+
"version": "1.0.2",
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 = "1.0.1"; // x-release-please-version
78+
const version = "1.0.2"; // 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, v1.0.1)", // x-release-please-version
201+
"Crosspost (https://github.com/humanwhocodes/crosspost, v1.0.2)", // 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, v1.0.1)", // x-release-please-version
190+
"Crosspost (https://github.com/humanwhocodes/crosspost, v1.0.2)", // 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 v1.0.1", // x-release-please-version
144+
"User-Agent": "Crosspost v1.0.2", // 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, v1.0.1)", // x-release-please-version
192+
"Crosspost CLI (https://github.com/humanwhocodes/crosspost, v1.0.2)", // x-release-please-version
193193
},
194194
body: formData,
195195
signal: postOptions?.signal,

0 commit comments

Comments
 (0)