Skip to content

Commit

Permalink
Merge pull request #43 from kroma-network/feat/update-version-to-v0.2.1
Browse files Browse the repository at this point in the history
feat(zkevm-circuits): update version
  • Loading branch information
dongchangYoo authored May 28, 2024
2 parents 5deea13 + 4f285bd commit af4ebec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zkevm-circuits/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub const MAJOR: u32 = 0;
/// Minor version
pub const MINOR: u32 = 2;
/// Patch version
pub const PATCH: u32 = 0;
pub const PATCH: u32 = 1;

/// Export versions as string
pub fn as_string() -> String {
Expand All @@ -18,11 +18,11 @@ mod tests {

#[test]
fn test_version_string() {
let expected = "0.2.0";
let expected = "0.2.1";

assert_eq!(version::MAJOR, 0, "wrong version");
assert_eq!(version::MINOR, 2, "wrong version");
assert_eq!(version::PATCH, 0, "wrong version");
assert_eq!(version::PATCH, 1, "wrong version");
assert_eq!(version::as_string(), expected, "wrong version");
}
}

0 comments on commit af4ebec

Please sign in to comment.