From 7795131e89b6fe423e432378f058392d336aab18 Mon Sep 17 00:00:00 2001 From: Aaron Eline Date: Thu, 21 Dec 2023 16:42:55 -0500 Subject: [PATCH] Preparing for release (#544) Co-authored-by: Kesha Hietala Co-authored-by: Andrew Wells <130512013+andrewmwells-amazon@users.noreply.github.com> --- cedar-policy-cli/CHANGELOG.md | 2 ++ cedar-policy-cli/Cargo.toml | 6 +++--- cedar-policy-core/Cargo.toml | 2 +- cedar-policy-formatter/Cargo.toml | 4 ++-- cedar-policy-validator/Cargo.toml | 4 ++-- cedar-policy/CHANGELOG.md | 2 +- cedar-policy/Cargo.toml | 6 +++--- 7 files changed, 14 insertions(+), 12 deletions(-) diff --git a/cedar-policy-cli/CHANGELOG.md b/cedar-policy-cli/CHANGELOG.md index dbe3cc2d6..3b975f7bc 100644 --- a/cedar-policy-cli/CHANGELOG.md +++ b/cedar-policy-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## 3.0.1 + ## 3.0.0 Now uses Cedar language version 3.0.0. diff --git a/cedar-policy-cli/Cargo.toml b/cedar-policy-cli/Cargo.toml index 0cebea4bc..24bde5772 100644 --- a/cedar-policy-cli/Cargo.toml +++ b/cedar-policy-cli/Cargo.toml @@ -2,7 +2,7 @@ name = "cedar-policy-cli" edition = "2021" -version = "3.0.0" +version = "3.0.1" license = "Apache-2.0" categories = ["compilers", "config"] description = "CLI interface for the Cedar Policy language." @@ -11,8 +11,8 @@ homepage = "https://cedarpolicy.com" repository = "https://github.com/cedar-policy/cedar" [dependencies] -cedar-policy = { version = "=3.0.0", path = "../cedar-policy" } -cedar-policy-formatter = { version = "=3.0.0", path = "../cedar-policy-formatter" } +cedar-policy = { version = "=3.0.1", path = "../cedar-policy" } +cedar-policy-formatter = { version = "=3.0.1", path = "../cedar-policy-formatter" } clap = { version = "4", features = ["derive", "env"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/cedar-policy-core/Cargo.toml b/cedar-policy-core/Cargo.toml index 4d97c8588..507c29229 100644 --- a/cedar-policy-core/Cargo.toml +++ b/cedar-policy-core/Cargo.toml @@ -3,7 +3,7 @@ name = "cedar-policy-core" edition = "2021" build = "build.rs" -version = "3.0.0" +version = "3.0.1" license = "Apache-2.0" categories = ["compilers", "config"] description = "Core implemenation of the Cedar Policy language." diff --git a/cedar-policy-formatter/Cargo.toml b/cedar-policy-formatter/Cargo.toml index f820ebc22..9bbaa75a7 100644 --- a/cedar-policy-formatter/Cargo.toml +++ b/cedar-policy-formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cedar-policy-formatter" -version = "3.0.0" +version = "3.0.1" edition = "2021" license = "Apache-2.0" categories = ["compilers", "config"] @@ -10,7 +10,7 @@ homepage = "https://cedarpolicy.com" repository = "https://github.com/cedar-policy/cedar" [dependencies] -cedar-policy-core = { version = "=3.0.0", path = "../cedar-policy-core" } +cedar-policy-core = { version = "=3.0.1", path = "../cedar-policy-core" } pretty = "0.12.1" logos = "0.13.0" itertools = "0.12" diff --git a/cedar-policy-validator/Cargo.toml b/cedar-policy-validator/Cargo.toml index c833de882..c7c66444b 100644 --- a/cedar-policy-validator/Cargo.toml +++ b/cedar-policy-validator/Cargo.toml @@ -2,7 +2,7 @@ name = "cedar-policy-validator" edition = "2021" -version = "3.0.0" +version = "3.0.1" license = "Apache-2.0" categories = ["compilers", "config"] description = "Validator for the Cedar Policy language." @@ -11,7 +11,7 @@ homepage = "https://cedarpolicy.com" repository = "https://github.com/cedar-policy/cedar" [dependencies] -cedar-policy-core = { version = "=3.0.0", path = "../cedar-policy-core" } +cedar-policy-core = { version = "=3.0.1", path = "../cedar-policy-core" } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", features = ["preserve_order"] } serde_with = "3.0" diff --git a/cedar-policy/CHANGELOG.md b/cedar-policy/CHANGELOG.md index 03d590f63..cd906fb2e 100644 --- a/cedar-policy/CHANGELOG.md +++ b/cedar-policy/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [3.0.1] - coming soon +## [3.0.1] - 2023-12-21 Cedar Language Version: 3.0.0 ### Fixed diff --git a/cedar-policy/Cargo.toml b/cedar-policy/Cargo.toml index 2964f9b0d..9512d010b 100644 --- a/cedar-policy/Cargo.toml +++ b/cedar-policy/Cargo.toml @@ -2,7 +2,7 @@ name = "cedar-policy" edition = "2021" -version = "3.0.0" +version = "3.0.1" license = "Apache-2.0" categories = ["compilers", "config"] description = "Cedar is a language for defining permissions as policies, which describe who should have access to what." @@ -11,8 +11,8 @@ homepage = "https://cedarpolicy.com" repository = "https://github.com/cedar-policy/cedar" [dependencies] -cedar-policy-core = { version = "=3.0.0", path = "../cedar-policy-core" } -cedar-policy-validator = { version = "=3.0.0", path = "../cedar-policy-validator" } +cedar-policy-core = { version = "=3.0.1", path = "../cedar-policy-core" } +cedar-policy-validator = { version = "=3.0.1", path = "../cedar-policy-validator" } ref-cast = "1.0" serde = { version = "1.0", features = ["derive", "rc"] } serde_json = "1.0"