From 3fa2847e6f052d6af07d945f351a4e2f9b0ae32e Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi <35780660+anakrish@users.noreply.github.com> Date: Thu, 11 Apr 2024 07:03:10 -0700 Subject: [PATCH] chore: release (#205) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f63a92..86813f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/microsoft/regorus/compare/regorus-v0.1.2...regorus-v0.1.3) - 2024-04-11 + +### Other +- Add a note in example to prefer eval_rule over eval_query ([#204](https://github.com/microsoft/regorus/pull/204)) +- Do not enable serde_json/arbitrary_precision by default ([#203](https://github.com/microsoft/regorus/pull/203)) +- Rewrite so that code compiles with chrono_tz 0.8.5 and 0.9.0 ([#201](https://github.com/microsoft/regorus/pull/201)) +- update ruby bindings ([#200](https://github.com/microsoft/regorus/pull/200)) +- Store Value instances in AST for strings, numbers and idents ([#197](https://github.com/microsoft/regorus/pull/197)) +- :Value> and From ([#196](https://github.com/microsoft/regorus/pull/196)) +- Build dependency on git only if opa.runtime feature is enabled. ([#194](https://github.com/microsoft/regorus/pull/194)) +- Update to opa v0.63.0 ([#192](https://github.com/microsoft/regorus/pull/192)) +- Update pyo3 requirement from 0.20.2 to 0.21.0 ([#190](https://github.com/microsoft/regorus/pull/190)) +- Ruby bindings for existing FFI methods, plus eval_rule() ([#188](https://github.com/microsoft/regorus/pull/188)) +- Evaluate rules directly instead of queries ([#186](https://github.com/microsoft/regorus/pull/186)) +- Remove cruft. ([#184](https://github.com/microsoft/regorus/pull/184)) + ## [0.1.2](https://github.com/microsoft/regorus/compare/regorus-v0.1.1...regorus-v0.1.2) - 2024-03-22 ### Other diff --git a/Cargo.toml b/Cargo.toml index 7ae5dda..0c9f626 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ [package] name = "regorus" description = "A fast, lightweight Rego (OPA policy language) interpreter" -version = "0.1.2" +version = "0.1.3" edition = "2021" license-file = "LICENSE" repository = "https://github.com/microsoft/regorus"