Skip to content

Commit e7d380b

Browse files
committed
chore: release-please config
1 parent b5490da commit e7d380b

11 files changed

Lines changed: 76 additions & 17 deletions

File tree

.github/workflows/push.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ jobs:
1818
id: release
1919
with:
2020
token: ${{ secrets.GH_TOKEN }}
21-
release-type: rust
2221
outputs:
23-
release_created: ${{ steps.release.outputs.release_created }}
24-
version: ${{ steps.release.outputs.tag_name }}
22+
release_created: ${{ steps.release.outputs.releases_created }}
23+
version: ${{ steps.release.outputs['standalone--tag_name'] }}
2524
docker-publish:
2625
needs: release-please
2726
if: ${{ needs.release-please.outputs.release_created == 'true' }}

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"hookbuffer-cf-worker": "2.4.7",
3-
"hookbuffer-standalone": "2.4.7",
4-
"shared-lib": "2.4.7"
2+
"./cf-worker": "2.4.7",
3+
"./standalone": "2.4.7",
4+
"./shared-lib": "2.4.7"
55
}

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ members = [
44
"standalone",
55
"shared-lib"
66
]
7-
package.version = "2.4.7"
87
resolver = "2"
98

109
[workspace.dependencies]

cf-worker/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
## [3.0.0](https://github.com/cbackas/hookbuffer/compare/v2.4.7...v3.0.0) (2025-03-05)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Cloudflare workers ([#22](https://github.com/cbackas/hookbuffer/issues/22))
9+
10+
### Features
11+
12+
* Cloudflare workers ([#22](https://github.com/cbackas/hookbuffer/issues/22)) ([b5490da](https://github.com/cbackas/hookbuffer/commit/b5490daa0c9e087dfd5474064ea217cc22fa5d5a))

cf-worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hookbuffer-cf-worker"
3-
version.workspace = true
3+
version = "3.0.0"
44
edition = "2021"
55
authors = [ "Zac <git@zac.gg>" ]
66

release-please-config.json

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,33 @@
11
{
2-
"bootstrap-sha": "8e89e45eb48c8c8428e779c54f3a167a7bded304",
2+
"include-component-in-tag": false,
3+
"plugins": [
4+
{
5+
"type": "cargo-workspace",
6+
"merge": false
7+
},
8+
{
9+
"type": "linked-versions",
10+
"groupName": "hookbuffer",
11+
"components": [
12+
"cf-worker",
13+
"standalone",
14+
"shared-lib"
15+
]
16+
}
17+
],
318
"packages": {
4-
".": {
5-
"release-type": "rust"
19+
"./cf-worker": {
20+
"release-type": "rust",
21+
"component": "cf-worker"
22+
},
23+
"./standalone": {
24+
"release-type": "rust",
25+
"component": "standalone"
26+
},
27+
"./shared-lib": {
28+
"release-type": "rust",
29+
"component": "shared-lib"
630
}
7-
}
31+
},
32+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
833
}

shared-lib/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
## [3.0.0](https://github.com/cbackas/hookbuffer/compare/2.4.7...v3.0.0) (2025-03-05)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Cloudflare workers ([#22](https://github.com/cbackas/hookbuffer/issues/22))
9+
10+
### Features
11+
12+
* Cloudflare workers ([#22](https://github.com/cbackas/hookbuffer/issues/22)) ([b5490da](https://github.com/cbackas/hookbuffer/commit/b5490daa0c9e087dfd5474064ea217cc22fa5d5a))

shared-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shared-lib"
3-
version.workspace = true
3+
version = "3.0.0"
44
edition = "2021"
55

66
[features]

standalone/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
## [3.0.0](https://github.com/cbackas/hookbuffer/compare/v2.4.7...v3.0.0) (2025-03-05)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Cloudflare workers ([#22](https://github.com/cbackas/hookbuffer/issues/22))
9+
10+
### Features
11+
12+
* Cloudflare workers ([#22](https://github.com/cbackas/hookbuffer/issues/22)) ([b5490da](https://github.com/cbackas/hookbuffer/commit/b5490daa0c9e087dfd5474064ea217cc22fa5d5a))

0 commit comments

Comments
 (0)