Skip to content

Commit 3f475c5

Browse files
chore: release
1 parent 256eb52 commit 3f475c5

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

interpreter/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ 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-03-12
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+
### Other
17+
18+
- Fix typos. ([#125](https://github.com/clarkmcc/cel-rust/pull/125))
19+
- Add custom Duration and Timestamp types for conversion with serde ([#89](https://github.com/clarkmcc/cel-rust/pull/89))
20+
- Export timestamp and duration fn as they were ([#112](https://github.com/clarkmcc/cel-rust/pull/112))
21+
- ValueType copy & debug ([#113](https://github.com/clarkmcc/cel-rust/pull/113))
22+
- Expose Serialization and ToJson errors ([#114](https://github.com/clarkmcc/cel-rust/pull/114))
23+
- Fix compilation without chrono ([#111](https://github.com/clarkmcc/cel-rust/pull/111))
24+
- Fix default features, cleanup dependencies & other minor code improvements ([#109](https://github.com/clarkmcc/cel-rust/pull/109))
25+
- Added missing timestamp macros ([#106](https://github.com/clarkmcc/cel-rust/pull/106))
26+
1027
## [0.9.0](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.8.1...cel-interpreter-v0.9.0) - 2024-10-30
1128

1229
### 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-03-12
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)