Skip to content

Commit b5b28d4

Browse files
authored
Merge pull request #7 from BraveY/chore-bump-deps
chore: bump versionize from 0.1.10 to 0.2.0 and rust version
2 parents 1392b84 + 1208a87 commit b5b28d4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/bvt.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
workflow_dispatch:
77
env:
8-
RUST_VERSION: 1.73.0
8+
RUST_VERSION: 1.84.0
99
jobs:
1010
build:
1111
name: Build

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dbs-snapshot"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
authors = [
55
"Amazon Firecracker team <firecracker-devel@amazon.com>",
66
"Kata Containers Developers",
@@ -18,7 +18,7 @@ bench = false
1818

1919
[dependencies]
2020
libc = "0.2.117"
21-
versionize = "0.1.10"
21+
versionize = "0.2.0"
2222
versionize_derive = "0.1.5"
2323
thiserror = "1.0.32"
2424
displaydoc = "0.2.4"

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
//! Each structure, union or enum is versioned separately and only needs to increment their version
2323
//! if a field is added or removed. For each state snapshot we define 2 versions:
2424
//! - **the format version** which refers to the SnapshotHdr, CRC, or the representation of
25-
//! primitives types (currently we use versionize that uses serde bincode as a backend). The current
26-
//! implementation does not have any logic dependent on it.
25+
//! primitives types (currently we use versionize that uses serde bincode as a backend). The current
26+
//! implementation does not have any logic dependent on it.
2727
//! - **the data version** which refers to the state.
2828
mod persist;
2929
use std::fmt::Debug;

0 commit comments

Comments
 (0)