diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index 360f2ec..88198cb 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -16,5 +16,4 @@ jobs: - uses: google-github-actions/release-please-action@v3 with: command: manifest - release-type: rust diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e3f5d34..09353fe 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,5 @@ { "crates/does-it-throw": "0.1.6", - "crates/does-it-throw-wasm": "0.1.6" + "crates/does-it-throw-wasm": "0.1.6", + ".": "0.1.6" } diff --git a/release-please-config.json b/release-please-config.json index a6c1536..05b80f4 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,13 +1,24 @@ { - "plugins": ["cargo-workspace"], + "plugins": [ + "cargo-workspace", + { + "type": "linked-versions", + "groupName": "does-it-throw-rust", + "components": [ + "crates/does-it-throw", + "crates/does-it-throw-wasm" + ] + } + ], "packages": { ".": { - "changelog-path": "CHANGELOG.md", - "release-type": "rust", - "bump-minor-pre-major": false, - "bump-patch-for-minor-pre-major": false, - "draft": false, - "prerelease": false + "release-type": "node" + }, + "crates/does-it-throw": { + "release-type": "rust" + }, + "crates/does-it-throw-wasm": { + "release-type": "rust" } }, "bootstrap-sha": "89c1833c752211c7e712ef926c3d14f85ac1a779",