Skip to content

Commit

Permalink
Merge pull request #734 from vdice/chore/0.5.0-bumps
Browse files Browse the repository at this point in the history
chore(*): bumps for forthcoming 0.5.0 release
  • Loading branch information
vdice authored Sep 2, 2022
2 parents 4977ca6 + 7f34502 commit b9fedcc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
[package]
name = "spin-cli"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
authors = [ "Fermyon Engineering <[email protected]>" ]

Expand Down
6 changes: 3 additions & 3 deletions docs/content/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ You can download the [latest release](https://github.com/fermyon/spin/releases).
For example, for an Apple silicon macOS machine:

```
$ wget https://github.com/fermyon/spin/releases/download/v0.4.0/spin-v0.4.0-macos-aarch64.tar.gz
$ tar xfv spin-v0.4.0-macos-aarch64.tar.gz
$ wget https://github.com/fermyon/spin/releases/download/v0.5.0/spin-v0.5.0-macos-aarch64.tar.gz
$ tar xfv spin-v0.5.0-macos-aarch64.tar.gz
$ ./spin --help
```

If you have [`cargo`](https://doc.rust-lang.org/cargo/getting-started/installation.html), you can clone the repo and install it to your path:

```bash
$ git clone https://github.com/fermyon/spin -b v0.4.0
$ git clone https://github.com/fermyon/spin -b v0.5.0
$ cd spin
$ rustup target add wasm32-wasi
$ cargo install --locked --path .
Expand Down
8 changes: 5 additions & 3 deletions docs/content/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@ 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.3.0` becomes `0.3.1`)
(e.g. `0.5.0` becomes `0.5.1`)
- Bump the version in Spin's `Cargo.toml`
- Bump the version in the Rust SDK as well (`sdk/rust/Cargo.toml`)
- 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.3.1`)
1. The Go SDK tag `sdk/go/v0.3.1` and template tag `spin/templates/v0.3` will be created in `release` [action](https://github.com/fermyon/spin/actions/workflows/release.yaml).
1. Create a new tag with a `v` and then the version number (`v0.5.1`)
1. The Go SDK tag `sdk/go/v0.5.1` and template tag `spin/templates/v0.5` will
be created in the `release`
[action](https://github.com/fermyon/spin/actions/workflows/release.yaml).
1. When the `release`
[action](https://github.com/fermyon/spin/actions/workflows/release.yaml)
completes, binary artifacts and checksums will be automatically uploaded.
Expand Down
2 changes: 1 addition & 1 deletion sdk/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "spin-sdk"
version = "0.4.0"
version = "0.5.0"

[lib]
name = "spin_sdk"
Expand Down

0 comments on commit b9fedcc

Please sign in to comment.