Skip to content

Commit 245e1e1

Browse files
committed
chore: run ./tools/bump-version.sh 1.4.0-dev
- Bump the version to 1.4.0-dev - Add a new version in the snapshot version map - Run cargo update; update dependencies list - Adjusted jailer binary size Signed-off-by: Pablo Barbáchano <[email protected]>
1 parent 7818aeb commit 245e1e1

File tree

11 files changed

+332
-381
lines changed

11 files changed

+332
-381
lines changed

Cargo.lock

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

src/api_server/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.3.0
8+
version: 1.4.0-dev
99
termsOfService: ""
1010
contact:
1111

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.3.0"
3+
version = "1.4.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2021"
66
build = "../../build.rs"

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.3.0"
3+
version = "1.4.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2021"
66
build = "../../build.rs"

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.3.0"
3+
version = "1.4.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2021"
66
build = "../../build.rs"

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.3.0"
3+
version = "1.4.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2021"
66
build = "../../build.rs"

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.3.0"
3+
version = "1.4.0-dev"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2021"
66
build = "../../build.rs"

src/vmm/src/version_map.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ pub const FC_V1_1_SNAP_VERSION: u16 = 5;
3131
pub const FC_V1_2_SNAP_VERSION: u16 = 6;
3232
/// Snap version for Firecracker v1.3
3333
pub const FC_V1_3_SNAP_VERSION: u16 = 7;
34+
/// Snap version for Firecracker v1.4
35+
pub const FC_V1_4_SNAP_VERSION: u16 = 8;
3436

3537
lazy_static! {
3638
// Note: until we have a better design, this needs to be updated when the version changes.
@@ -65,6 +67,11 @@ lazy_static! {
6567
// to be 1-to-1 (see below)
6668
version_map.new_version();
6769

70+
// v1.4 - no changes introduced, but we need to bump as mapping
71+
// between firecracker minor versions and snapshot versions needs
72+
// to be 1-to-1 (see below)
73+
version_map.new_version();
74+
6875
version_map
6976
};
7077

@@ -90,6 +97,7 @@ lazy_static! {
9097
mapping.insert(String::from("1.1.0"), FC_V1_1_SNAP_VERSION);
9198
mapping.insert(String::from("1.2.0"), FC_V1_2_SNAP_VERSION);
9299
mapping.insert(String::from("1.3.0"), FC_V1_3_SNAP_VERSION);
100+
mapping.insert(String::from("1.4.0"), FC_V1_4_SNAP_VERSION);
93101

94102
mapping
95103
};

0 commit comments

Comments
 (0)