Skip to content

Commit 0bf8ab2

Browse files
chore: release (#107)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 490d611 commit 0bf8ab2

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

interpreter/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.9.1](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.9.0...cel-interpreter-v0.9.1) - 2025-04-29
11+
12+
### Added
13+
14+
- Implement Short-Circuit Evaluation for AND Expressions to Fix Issue #117 ([#118](https://github.com/clarkmcc/cel-rust/pull/118))
15+
16+
### Fixed
17+
18+
- improve `Context::add_variable` `Err` type ([#127](https://github.com/clarkmcc/cel-rust/pull/127))
19+
20+
### Other
21+
22+
- Add `min` function ([#130](https://github.com/clarkmcc/cel-rust/pull/130))
23+
- Fix typos. ([#125](https://github.com/clarkmcc/cel-rust/pull/125))
24+
- Add custom Duration and Timestamp types for conversion with serde ([#89](https://github.com/clarkmcc/cel-rust/pull/89))
25+
- Export timestamp and duration fn as they were ([#112](https://github.com/clarkmcc/cel-rust/pull/112))
26+
- ValueType copy & debug ([#113](https://github.com/clarkmcc/cel-rust/pull/113))
27+
- Expose Serialization and ToJson errors ([#114](https://github.com/clarkmcc/cel-rust/pull/114))
28+
- Fix compilation without chrono ([#111](https://github.com/clarkmcc/cel-rust/pull/111))
29+
- Fix default features, cleanup dependencies & other minor code improvements ([#109](https://github.com/clarkmcc/cel-rust/pull/109))
30+
- Added missing timestamp macros ([#106](https://github.com/clarkmcc/cel-rust/pull/106))
31+
1032
## [0.9.0](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.8.1...cel-interpreter-v0.9.0) - 2024-10-30
1133

1234
### Other

interpreter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
name = "cel-interpreter"
33
description = "An interpreter for the Common Expression Language (CEL)"
44
repository = "https://github.com/clarkmcc/cel-rust"
5-
version = "0.9.0"
5+
version = "0.9.1"
66
authors = ["Tom Forbes <tom@tomforb.es>", "Clark McCauley <me@clarkmccauley.com>"]
77
edition = "2021"
88
license = "MIT"
99
categories = ["compilers"]
1010

1111
[dependencies]
12-
cel-parser = { path = "../parser", version = "0.8.0" }
12+
cel-parser = { path = "../parser", version = "0.8.1" }
1313

1414
nom = "7.1.3"
1515

parser/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.1](https://github.com/clarkmcc/cel-rust/compare/cel-parser-v0.8.0...cel-parser-v0.8.1) - 2025-04-29
11+
12+
### Added
13+
14+
- Implement Short-Circuit Evaluation for AND Expressions to Fix Issue #117 ([#118](https://github.com/clarkmcc/cel-rust/pull/118))
15+
1016
## [0.8.0](https://github.com/clarkmcc/cel-rust/compare/cel-parser-v0.7.1...cel-parser-v0.8.0) - 2024-10-30
1117

1218
### Other

parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cel-parser"
33
description = "A parser for the Common Expression Language (CEL)"
44
repository = "https://github.com/clarkmcc/cel-rust"
5-
version = "0.8.0"
5+
version = "0.8.1"
66
authors = ["Tom Forbes <tom@tomforb.es>", "Clark McCauley <me@clarkmccauley.com>"]
77
edition = "2021"
88
license = "MIT"

0 commit comments

Comments
 (0)