Skip to content

Commit 314b18f

Browse files
authored
chore: align release-please state with v3.0.1 tag (#691)
The v3.0.0 release-please PR (#648) merged and bumped the manifest to 3.0.0, but the v3.0.0 tag/release never got published due to the immutable-releases fallout. v3.0.1 was hand-cut on top (commit ac75137) with no manifest bump, so on-disk state has been drifting from reality: manifest/package.json say 3.0.0 while the last real tag is v3.0.1. With no v3.0.0 git tag to anchor against, release-please walked the full repo history and proposed 0.12.1 in #690 (now closed). This PR unsticks release-please by: - Bumping .release-please-manifest.json, package.json, and PROVENANCE.md from 3.0.0 to 3.0.1 so they match the v3.0.1 tag. - Adding last-release-sha pointing at ac75137... (the v3.0.1 commit) to release-please-config.json so release-please only considers commits after v3.0.1. The Release-As footer below tells release-please to propose 3.0.2 on the next run, since the only commits between v3.0.1 and HEAD are a ci: change (#689) and this chore, neither of which would trigger a bump. v3.0.1 ships as a ghost release with zero assets attached (all prior manual-publish runs against it failed on immutable releases), so v3.0.2 will be the first real 3.x release with binaries and actions/attest provenance under the new flow from #689. Release-As: 3.0.2 Made-with: Cursor
1 parent 178f90e commit 314b18f

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.0.0"
2+
".": "3.0.1"
33
}

PROVENANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To verify build provenance attestations, we recommend using the [GitHub CLI `att
99
<!-- x-release-please-start-version -->
1010
```
1111
# Set the version of the package to verify
12-
PACKAGE_VERSION=3.0.0
12+
PACKAGE_VERSION=3.0.1
1313
```
1414
<!-- x-release-please-end -->
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@launchdarkly/ldcli",
33
"description": "The official command line interface for managing LaunchDarkly feature flags.",
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"main": "index.js",
66
"scripts": {
77
"postinstall": "go-npm install",

release-please-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"release-type": "go",
55
"versioning": "default",
66
"draft": true,
7+
"last-release-sha": "ac751372919a03537b86daa867d3b88c81a6db02",
78
"extra-files": [
89
"PROVENANCE.md",
910
{

0 commit comments

Comments
 (0)