Skip to content

Commit

Permalink
bump the version
Browse files Browse the repository at this point in the history
  • Loading branch information
rgl committed May 12, 2024
1 parent 1f3d63f commit 59e8959
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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 @@ -2,7 +2,7 @@
name = "spin-http-rust-example"
authors = ["Rui Lopes <rgl@ruilopes.com>"]
description = "Example Spin HTTP Application written in Rust"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

[lib]
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Use `crictl`:
# see https://github.com/kubernetes-sigs/cri-tools/blob/master/cmd/crictl/container.go
# see https://github.com/kubernetes/cri-api/blob/kubernetes-1.27.10/pkg/apis/runtime/v1/api.proto
crictl pull \
ghcr.io/rgl/spin-http-rust-example:0.3.0
ghcr.io/rgl/spin-http-rust-example:0.3.1
crictl images list
crictl info | jq .config.containerd.runtimes
install -d -m 700 /var/log/cri
Expand All @@ -71,7 +71,7 @@ cat >cri-spin-http-rust-example.web.ctr.yml <<'EOF'
metadata:
name: web
image:
image: ghcr.io/rgl/spin-http-rust-example:0.3.0
image: ghcr.io/rgl/spin-http-rust-example:0.3.1
command:
- /
log_path: web.log
Expand Down Expand Up @@ -104,13 +104,13 @@ Use `ctr`:

```bash
ctr image pull \
ghcr.io/rgl/spin-http-rust-example:0.3.0
ghcr.io/rgl/spin-http-rust-example:0.3.1
ctr images list
ctr run \
--detach \
--runtime io.containerd.spin.v2 \
--net-host \
ghcr.io/rgl/spin-http-rust-example:0.3.0 \
ghcr.io/rgl/spin-http-rust-example:0.3.1 \
ctr-spin-http-rust-example
ctr sandboxes list # aka pods.
ctr containers list
Expand Down
2 changes: 1 addition & 1 deletion spin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ spin_manifest_version = 2

[application]
name = "spin-http-rust-example"
version = "0.3.0"
version = "0.3.1"
authors = ["Rui Lopes <rgl@ruilopes.com>"]
description = "Example Spin HTTP Application written in Rust"

Expand Down

0 comments on commit 59e8959

Please sign in to comment.