From 519381e3ef1f0fec91c6729842485c9755e55075 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 17:33:06 +0000 Subject: [PATCH] chore(cel-interpreter): release v0.10.0 --- interpreter/CHANGELOG.md | 9 +++++++++ interpreter/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/interpreter/CHANGELOG.md b/interpreter/CHANGELOG.md index 5f4318e..173017b 100644 --- a/interpreter/CHANGELOG.md +++ b/interpreter/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.9.0...cel-interpreter-v0.10.0) - 2024-11-13 + +### Other + +- Expose Serialization and ToJson errors ([#114](https://github.com/clarkmcc/cel-rust/pull/114)) +- Fix compilation without chrono ([#111](https://github.com/clarkmcc/cel-rust/pull/111)) +- Fix default features, cleanup dependencies & other minor code improvements ([#109](https://github.com/clarkmcc/cel-rust/pull/109)) +- Added missing timestamp macros ([#106](https://github.com/clarkmcc/cel-rust/pull/106)) + ## [0.9.0](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.8.1...cel-interpreter-v0.9.0) - 2024-10-30 ### Other diff --git a/interpreter/Cargo.toml b/interpreter/Cargo.toml index 45a1379..accd9c0 100644 --- a/interpreter/Cargo.toml +++ b/interpreter/Cargo.toml @@ -2,7 +2,7 @@ name = "cel-interpreter" description = "An interpreter for the Common Expression Language (CEL)" repository = "https://github.com/clarkmcc/cel-rust" -version = "0.9.0" +version = "0.10.0" authors = ["Tom Forbes ", "Clark McCauley "] edition = "2021" license = "MIT"