Skip to content

Commit b9fedcc

Browse files
authored
Merge pull request #734 from vdice/chore/0.5.0-bumps
chore(*): bumps for forthcoming 0.5.0 release
2 parents 4977ca6 + 7f34502 commit b9fedcc

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spin-cli"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
authors = [ "Fermyon Engineering <engineering@fermyon.com>" ]
66

docs/content/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ You can download the [latest release](https://github.com/fermyon/spin/releases).
1616
For example, for an Apple silicon macOS machine:
1717

1818
```
19-
$ wget https://github.com/fermyon/spin/releases/download/v0.4.0/spin-v0.4.0-macos-aarch64.tar.gz
20-
$ tar xfv spin-v0.4.0-macos-aarch64.tar.gz
19+
$ wget https://github.com/fermyon/spin/releases/download/v0.5.0/spin-v0.5.0-macos-aarch64.tar.gz
20+
$ tar xfv spin-v0.5.0-macos-aarch64.tar.gz
2121
$ ./spin --help
2222
```
2323

2424
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:
2525

2626
```bash
27-
$ git clone https://github.com/fermyon/spin -b v0.4.0
27+
$ git clone https://github.com/fermyon/spin -b v0.5.0
2828
$ cd spin
2929
$ rustup target add wasm32-wasi
3030
$ cargo install --locked --path .

docs/content/release-process.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@ url = "https://github.com/fermyon/spin/blob/main/docs/content/release-process.md
88
To cut a release of Spin, you will need to do the following:
99

1010
1. Create a pull request that changes the version number for your new version
11-
(e.g. `0.3.0` becomes `0.3.1`)
11+
(e.g. `0.5.0` becomes `0.5.1`)
1212
- Bump the version in Spin's `Cargo.toml`
1313
- Bump the version in the Rust SDK as well (`sdk/rust/Cargo.toml`)
1414
- Check the docs for hard-coded version strings
1515
1. Merge the PR created in #1 (Such PRs are still required to get approvals, so
1616
make sure you get signoff on the PR)
1717
1. Before proceeding, verify that the merge commit on `main` intended to be
1818
tagged is green, i.e. CI is successful
19-
1. Create a new tag with a `v` and then the version number (`v0.3.1`)
20-
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).
19+
1. Create a new tag with a `v` and then the version number (`v0.5.1`)
20+
1. The Go SDK tag `sdk/go/v0.5.1` and template tag `spin/templates/v0.5` will
21+
be created in the `release`
22+
[action](https://github.com/fermyon/spin/actions/workflows/release.yaml).
2123
1. When the `release`
2224
[action](https://github.com/fermyon/spin/actions/workflows/release.yaml)
2325
completes, binary artifacts and checksums will be automatically uploaded.

sdk/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "spin-sdk"
4-
version = "0.4.0"
4+
version = "0.5.0"
55

66
[lib]
77
name = "spin_sdk"

0 commit comments

Comments
 (0)