Skip to content

Commit

Permalink
bump to 3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
khieta committed May 17, 2024
1 parent 7da8c61 commit fbd3c32
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 12 deletions.
2 changes: 2 additions & 0 deletions cedar-policy-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## 3.1.4

## 3.1.3

- The `translate-schema` command now produces prettier output.
Expand Down
6 changes: 3 additions & 3 deletions cedar-policy-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cedar-policy-cli"
edition = "2021"

version = "3.1.3"
version = "3.1.4"
license = "Apache-2.0"
categories = ["compilers", "config"]
description = "CLI interface for the Cedar Policy language."
Expand All @@ -11,8 +11,8 @@ homepage = "https://cedarpolicy.com"
repository = "https://github.com/cedar-policy/cedar"

[dependencies]
cedar-policy = { version = "=3.1.3", path = "../cedar-policy" }
cedar-policy-formatter = { version = "=3.1.3", path = "../cedar-policy-formatter" }
cedar-policy = { version = "=3.1.4", path = "../cedar-policy" }
cedar-policy-formatter = { version = "=3.1.4", path = "../cedar-policy-formatter" }
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion cedar-policy-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "cedar-policy-core"
edition = "2021"
build = "build.rs"

version = "3.1.3"
version = "3.1.4"
license = "Apache-2.0"
categories = ["compilers", "config"]
description = "Core implemenation of the Cedar Policy language."
Expand Down
4 changes: 2 additions & 2 deletions cedar-policy-formatter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cedar-policy-formatter"
version = "3.1.3"
version = "3.1.4"
edition = "2021"
license = "Apache-2.0"
categories = ["compilers", "config"]
Expand All @@ -10,7 +10,7 @@ homepage = "https://cedarpolicy.com"
repository = "https://github.com/cedar-policy/cedar"

[dependencies]
cedar-policy-core = { version = "=3.1.3", path = "../cedar-policy-core" }
cedar-policy-core = { version = "=3.1.4", path = "../cedar-policy-core" }
pretty = "0.12.1"
logos = "0.14.0"
itertools = "0.12"
Expand Down
4 changes: 2 additions & 2 deletions cedar-policy-validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cedar-policy-validator"
edition = "2021"

version = "3.1.3"
version = "3.1.4"
license = "Apache-2.0"
categories = ["compilers", "config"]
description = "Validator for the Cedar Policy language."
Expand All @@ -11,7 +11,7 @@ homepage = "https://cedarpolicy.com"
repository = "https://github.com/cedar-policy/cedar"

[dependencies]
cedar-policy-core = { version = "=3.1.3", path = "../cedar-policy-core" }
cedar-policy-core = { version = "=3.1.4", path = "../cedar-policy-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_with = "3.0"
Expand Down
9 changes: 8 additions & 1 deletion cedar-policy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.1.4] - 2024-05-17

### Fixed

- The formatter will now fail with an error if it changes a policy's semantics. (#865)

## [3.1.3] - 2024-04-15

### Changed
Expand Down Expand Up @@ -423,7 +429,8 @@ Cedar Language Version: 2.0.0
Cedar Language Version: 2.0.0
- Initial release of `cedar-policy`.

[Unreleased]: https://github.com/cedar-policy/cedar/compare/v3.1.3...main
[Unreleased]: https://github.com/cedar-policy/cedar/compare/v3.1.4...main
[3.1.4]: https://github.com/cedar-policy/cedar/compare/v3.1.3...v3.1.4
[3.1.3]: https://github.com/cedar-policy/cedar/compare/v3.1.2...v3.1.3
[3.1.2]: https://github.com/cedar-policy/cedar/compare/v3.1.1...v3.1.2
[3.1.1]: https://github.com/cedar-policy/cedar/compare/v3.1.0...v3.1.1
Expand Down
6 changes: 3 additions & 3 deletions cedar-policy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cedar-policy"
edition = "2021"

version = "3.1.3"
version = "3.1.4"
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."
Expand All @@ -11,8 +11,8 @@ homepage = "https://cedarpolicy.com"
repository = "https://github.com/cedar-policy/cedar"

[dependencies]
cedar-policy-core = { version = "=3.1.3", path = "../cedar-policy-core" }
cedar-policy-validator = { version = "=3.1.3", path = "../cedar-policy-validator" }
cedar-policy-core = { version = "=3.1.4", path = "../cedar-policy-core" }
cedar-policy-validator = { version = "=3.1.4", path = "../cedar-policy-validator" }
ref-cast = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
Expand Down

0 comments on commit fbd3c32

Please sign in to comment.