Skip to content

Commit 57e8428

Browse files
committed
chore: bump version to 1.8.0-dev
bump version to 1.8.0-dev Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
1 parent e5e2fc3 commit 57e8428

File tree

10 files changed

+47
-50
lines changed

10 files changed

+47
-50
lines changed

Cargo.lock

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

docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ kernel image with a Ubuntu 22.04 rootfs from our CI:
8383
ARCH="$(uname -m)"
8484

8585
# Download a linux kernel binary
86-
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/${ARCH}/vmlinux-5.10.209
86+
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.8/${ARCH}/vmlinux-5.10.209
8787

8888
# Download a rootfs
89-
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/${ARCH}/ubuntu-22.04.ext4
89+
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.8/${ARCH}/ubuntu-22.04.ext4
9090

9191
# Download the ssh key for the rootfs
92-
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/${ARCH}/ubuntu-22.04.id_rsa
92+
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.8/${ARCH}/ubuntu-22.04.id_rsa
9393

9494
# Set user read permission on the ssh key
9595
chmod 400 ./ubuntu-22.04.id_rsa

src/cpu-template-helper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpu-template-helper"
3-
version = "1.7.0-dev"
3+
version = "1.8.0-dev"
44
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
55
edition = "2021"
66
license = "Apache-2.0"

src/firecracker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firecracker"
3-
version = "1.7.0-dev"
3+
version = "1.8.0-dev"
44
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
55
edition = "2021"
66
build = "build.rs"

src/firecracker/swagger/firecracker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ info:
55
The API is accessible through HTTP calls on specific URLs
66
carrying JSON modeled data.
77
The transport medium is a Unix Domain Socket.
8-
version: 1.7.0-dev
8+
version: 1.8.0-dev
99
termsOfService: ""
1010
contact:
1111
email: "compute-capsule@amazon.com"

src/jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jailer"
3-
version = "1.7.0-dev"
3+
version = "1.8.0-dev"
44
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
55
edition = "2021"
66
description = "Process for starting Firecracker in production scenarios; applies a cgroup/namespace isolation barrier and then drops privileges."

src/rebase-snap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rebase-snap"
3-
version = "1.7.0-dev"
3+
version = "1.8.0-dev"
44
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
55
edition = "2021"
66
license = "Apache-2.0"

src/seccompiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "seccompiler"
3-
version = "1.7.0-dev"
3+
version = "1.8.0-dev"
44
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
55
edition = "2021"
66
description = "Program that compiles multi-threaded seccomp-bpf filters expressed as JSON into raw BPF programs, serializing them and outputting them to a file."

src/snapshot-editor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "snapshot-editor"
3-
version = "1.7.0-dev"
3+
version = "1.8.0-dev"
44
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
55
edition = "2021"
66
license = "Apache-2.0"

tools/devtool

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ ensure_ci_artifacts() {
526526

527527
# Fetch all the artifacts so they are local
528528
say "Fetching CI artifacts from S3"
529-
S3_URL=s3://spec.ccfc.min/firecracker-ci/v1.7/$(uname -m)
529+
S3_URL=s3://spec.ccfc.min/firecracker-ci/v1.8/$(uname -m)
530530
ARTIFACTS=$MICROVM_IMAGES_DIR/$(uname -m)
531531
if [ ! -d "$ARTIFACTS" ]; then
532532
mkdir -pv $ARTIFACTS

0 commit comments

Comments
 (0)