Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.9.0...cel-interpreter-v0.9.1) - 2024-12-30

### Added

- Implement Short-Circuit Evaluation for AND Expressions to Fix Issue #117 (#118)

### Other

- Add custom Duration and Timestamp types for conversion with serde ([#89](https://github.com/clarkmcc/cel-rust/pull/89))
- Export timestamp and duration fn as they were ([#112](https://github.com/clarkmcc/cel-rust/pull/112))
- ValueType copy & debug ([#113](https://github.com/clarkmcc/cel-rust/pull/113))
- 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
Expand Down
4 changes: 2 additions & 2 deletions interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
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.9.1"
authors = ["Tom Forbes <[email protected]>", "Clark McCauley <[email protected]>"]
edition = "2021"
license = "MIT"
categories = ["compilers"]

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

nom = "7.1.3"

Expand Down
6 changes: 6 additions & 0 deletions parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1](https://github.com/clarkmcc/cel-rust/compare/cel-parser-v0.8.0...cel-parser-v0.8.1) - 2024-12-30

### Added

- Implement Short-Circuit Evaluation for AND Expressions to Fix Issue #117 (#118)

## [0.8.0](https://github.com/clarkmcc/cel-rust/compare/cel-parser-v0.7.1...cel-parser-v0.8.0) - 2024-10-30

### Other
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cel-parser"
description = "A parser for the Common Expression Language (CEL)"
repository = "https://github.com/clarkmcc/cel-rust"
version = "0.8.0"
version = "0.8.1"
authors = ["Tom Forbes <[email protected]>", "Clark McCauley <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down