diff --git a/zkevm-circuits/src/version.rs b/zkevm-circuits/src/version.rs index f6b802d7..42613d54 100644 --- a/zkevm-circuits/src/version.rs +++ b/zkevm-circuits/src/version.rs @@ -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 { @@ -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"); } }