Skip to content

Commit

Permalink
chore(*): v0.7.1 version bumps (#995)
Browse files Browse the repository at this point in the history
Signed-off-by: Vaughn Dice <[email protected]>
  • Loading branch information
vdice authored Dec 19, 2022
1 parent 528576a commit 6cf7447
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 29 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0 WITH LLVM-exception"
rust-version = "1.64"

[workspace.package]
version = "0.7.0"
version = "0.7.1"
authors = [ "Fermyon Engineering <[email protected]>" ]
edition = "2021"

Expand Down
6 changes: 3 additions & 3 deletions docs/content/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ url = "https://github.com/fermyon/spin/blob/main/docs/content/release-process.md
To cut a release of Spin, you will need to do the following:

1. Create a pull request that changes the version number for your new version
(e.g. `0.7.0` becomes `0.7.1`)
(e.g. `0.7.1` becomes `0.7.2`)
- Bump the version in Spin's `Cargo.toml`
- Update SDK_VERSION in `templates/Makefile`
- Check the docs for hard-coded version strings
1. Merge the PR created in #1 (Such PRs are still required to get approvals, so
make sure you get signoff on the PR)
1. Before proceeding, verify that the merge commit on `main` intended to be
tagged is green, i.e. CI is successful
1. Create a new tag with a `v` and then the version number (`v0.7.1`)
1. The Go SDK tag `sdk/go/v0.7.1` will be created in the [release action].
1. Create a new tag with a `v` and then the version number (`v0.7.2`)
1. The Go SDK tag `sdk/go/v0.7.2` will be created in the [release action].
1. When the [release action] completes, binary artifacts and checksums will be
automatically uploaded to the GitHub release.
1. A Pull Request will also be created by `fermybot` containing changes to the
Expand Down
4 changes: 2 additions & 2 deletions docs/downloads/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ print_help() {
fancy_print 2 "This script installs Spin in the current directory."
fancy_print 2 ""
fancy_print 2 "Comand line arguments"
fancy_print 2 "--version or -v : Provide what version to install e.g. \"v0.7.0\" or \"canary\"."
fancy_print 2 "--version or -v : Provide what version to install e.g. \"v0.7.1\" or \"canary\"."
fancy_print 2 "--help or -h : Shows this help message"
}

Expand All @@ -48,7 +48,7 @@ while [[ $# -gt 0 ]]; do
if [[ $# -ne 0 ]]; then
VERSION="${1}"
else
fancy_print 1 "Please provide the desired version. e.g. --version v0.7.0 or -v canary"
fancy_print 1 "Please provide the desired version. e.g. --version v0.7.1 or -v canary"
exit 0
fi
;;
Expand Down
2 changes: 1 addition & 1 deletion templates/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SDK_VERSION ?= v0.7.0
SDK_VERSION ?= v0.7.1

bump-versions: bump-go-versions bump-rust-versions

Expand Down
2 changes: 1 addition & 1 deletion tests/http/simple-spin-rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6cf7447

Please sign in to comment.