You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[CHANGELOG.md](./CHANGELOG.md) the Unreleased section should be updated with the new version number and the date of the release. Update the links to new version tag in the footer of CHANGELOG.md
18
-
19
-
Run `cargo build
20
-
--release` to make sure lockfiles reflect Cargo.toml updates. Add a new
21
-
column to the [README shim and Spin version
22
-
map](./README.md#shim-and-spin-version-map) that lists the version of the
23
-
Spin dependencies for the release.
24
-
10
+
1. Change all references of the version number in repository using the [`version.sh`](./scripts/version.sh) script, which
11
+
updates all Cargo manifests and README documentation to use a bumped version. Specify a major,
12
+
minor, or patch version update using the `-m`, `-n`, `-p` flags, respectively.
13
+
```sh
14
+
# Update minor version (1.2.3 -> 1.3.0)
15
+
scripts/version.sh -n
16
+
```
25
17
18
+
1. Update [CHANGELOG.md](./CHANGELOG.md). The Unreleased section should be updated with the new
19
+
version number and the date of the release. Update the links to new version tag in the footer of
20
+
CHANGELOG.md.
21
+
22
+
1. Add a new column to the [README shim and Spin version map](./README.md#shim-and-spin-version-map)
23
+
that lists the version of the Spin dependencies for the release.
24
+
26
25
1. Create a pull request with these changes and merge once approved.
27
26
28
27
1. Checkout the commit with the version bump from above.
@@ -35,12 +34,12 @@ following:
35
34
# Create a GPG-signed and annotated tag
36
35
git tag -s -m "Containerd Shim Spin v0.15.0" v0.15.0
37
36
38
-
# Push the tag to the remote corresponding to spinkube/containerd-shim-spin (here 'origin')
37
+
# Push the tag to the remote corresponding to spinframework/containerd-shim-spin (here 'origin')
39
38
git push origin v0.15.0
40
39
```
41
40
42
41
1. Pushing the tag upstream will trigger the [release
0 commit comments