Skip to content

Commit

Permalink
chore: remove server-side version from release-please manifest (#272)
Browse files Browse the repository at this point in the history
This is an attempt to fix the pending release. 

Ideally, release please would detect that no release is necessary or
that a 0.1.0 initial release of the server side only is necessary.

Right now, it thinks that the `sse-client` needs a release, and it's
therefore bumping that and the server/client SDKs.
  • Loading branch information
cwaldren-ld authored Oct 24, 2023
1 parent 17668f9 commit 01c528a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"libs/client-sdk": "3.2.1",
"libs/server-sdk": "0.1.0",
"libs/server-sent-events": "0.2.0",
"libs/common": "0.5.0",
"libs/internal": "0.3.0"
Expand Down
3 changes: 2 additions & 1 deletion libs/server-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.3.0",
"launchdarkly-cpp-common": "0.5.0"
"launchdarkly-cpp-common": "0.5.0",
"launchdarkly-cpp-sse-client": "0.2.0"
}
}
3 changes: 2 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"CMakeLists.txt"
],
"prerelease": true,
"bump-minor-pre-major": true
"bump-minor-pre-major": true,
"release-as": "0.1.0"
},
"libs/server-sent-events": {
"initial-version": "0.1.0"
Expand Down

0 comments on commit 01c528a

Please sign in to comment.