diff --git a/cedar-policy/src/api.rs b/cedar-policy/src/api.rs index c574e6d66..ff28c4fed 100644 --- a/cedar-policy/src/api.rs +++ b/cedar-policy/src/api.rs @@ -70,7 +70,7 @@ pub(crate) mod version { static ref SDK_VERSION: Version = env!("CARGO_PKG_VERSION").parse().unwrap(); // Cedar language version // The patch version field may be unnecessary - static ref LANG_VERSION: Version = Version::new(4, 0, 0); + static ref LANG_VERSION: Version = Version::new(4, 1, 0); } /// Get the Cedar SDK Semantic Versioning version pub fn get_sdk_version() -> Version { diff --git a/cedar-policy/src/tests.rs b/cedar-policy/src/tests.rs index 61a65bf97..30c529b22 100644 --- a/cedar-policy/src/tests.rs +++ b/cedar-policy/src/tests.rs @@ -6202,12 +6202,12 @@ mod version_tests { #[test] fn test_sdk_version() { - assert_eq!(get_sdk_version().to_string(), "4.1.0"); + assert_eq!(get_sdk_version().to_string(), "4.2.0"); } #[test] fn test_lang_version() { - assert_eq!(get_lang_version().to_string(), "4.0.0"); + assert_eq!(get_lang_version().to_string(), "4.1.0"); } }