From 0e053832dbe94603306d7adff10c5ead673d4d95 Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi <35780660+anakrish@users.noreply.github.com> Date: Thu, 22 Feb 2024 21:18:49 -0800 Subject: [PATCH] chore: release (#157) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 4 ++-- bindings/java/CHANGELOG.md | 13 +++++++++++++ 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 bindings/java/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 5212595..1498aea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/microsoft/regorus/compare/regorus-v0.1.0...regorus-v0.1.1) - 2024-02-23 + +### Other +- Handle else block without body ([#155](https://github.com/microsoft/regorus/pull/155)) +- Ignore errors from builtin functions in non strict mode ([#154](https://github.com/microsoft/regorus/pull/154)) +- Java publishing ([#151](https://github.com/microsoft/regorus/pull/151)) +- Document coverage feature; Convenience query functions ([#152](https://github.com/microsoft/regorus/pull/152)) +- Policy Coverage ([#149](https://github.com/microsoft/regorus/pull/149)) +- Initial implementation of policy coverage ([#146](https://github.com/microsoft/regorus/pull/146)) +- Java bindings ([#147](https://github.com/microsoft/regorus/pull/147)) +- Preserve false in single-expression queries ([#145](https://github.com/microsoft/regorus/pull/145)) +- Create rust-clippy.yml ([#143](https://github.com/microsoft/regorus/pull/143)) +- `arc` feature to enable using Engine and other data structures from multiple threads ([#142](https://github.com/microsoft/regorus/pull/142)) +- genpolicy tweaks ([#141](https://github.com/microsoft/regorus/pull/141)) +- io.jwt.decode ([#140](https://github.com/microsoft/regorus/pull/140)) +- Use compact_rc ([#139](https://github.com/microsoft/regorus/pull/139)) +- Scripting tweaks ([#138](https://github.com/microsoft/regorus/pull/138)) + ## [0.1.0-alpha.3](https://github.com/microsoft/regorus/compare/regorus-v0.1.0-alpha.2...regorus-v0.1.0-alpha.3) - 2024-02-01 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index ff5cbf9..8df4571 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ [package] name = "regorus" description = "A fast, lightweight Rego (OPA policy language) interpreter" -version = "0.1.0" +version = "0.1.1" edition = "2021" license-file = "LICENSE" repository = "https://github.com/microsoft/regorus" @@ -130,4 +130,4 @@ test=false # To build locally: # RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features --no-deps all-features = true -rustdoc-args = ["--cfg", "docsrs"] \ No newline at end of file +rustdoc-args = ["--cfg", "docsrs"] diff --git a/bindings/java/CHANGELOG.md b/bindings/java/CHANGELOG.md new file mode 100644 index 0000000..d38205c --- /dev/null +++ b/bindings/java/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog +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). + +## [Unreleased] + +## [0.1.0](https://github.com/microsoft/regorus/releases/tag/regorus-java-v0.1.0) - 2024-02-23 + +### Other +- Java publishing ([#151](https://github.com/microsoft/regorus/pull/151)) +- Java bindings ([#147](https://github.com/microsoft/regorus/pull/147))