Skip to content

Commit ea256eb

Browse files
chore: release (#95)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 90463ba commit ea256eb

File tree

4 files changed

+42
-4
lines changed

4 files changed

+42
-4
lines changed

interpreter/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.9.0](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.8.1...cel-interpreter-v0.9.0) - 2024-10-30
11+
12+
### Other
13+
14+
- Support `.map` over map ([#105](https://github.com/clarkmcc/cel-rust/pull/105))
15+
- Detailed parse error ([#102](https://github.com/clarkmcc/cel-rust/pull/102))
16+
- Fix `clippy::too_long_first_doc_paragraph` lints. ([#101](https://github.com/clarkmcc/cel-rust/pull/101))
17+
- Support empty/default contexts, put chrono/regex behind features ([#97](https://github.com/clarkmcc/cel-rust/pull/97))
18+
- Fix `clippy::empty_line_after_doc_comments` lints ([#98](https://github.com/clarkmcc/cel-rust/pull/98))
19+
- Allow `.size()` method on types ([#88](https://github.com/clarkmcc/cel-rust/pull/88))
20+
- Conformance test fixes ([#79](https://github.com/clarkmcc/cel-rust/pull/79))
21+
- Convert CEL values to JSON ([#77](https://github.com/clarkmcc/cel-rust/pull/77))

interpreter/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.8.1"
5+
version = "0.9.0"
66
authors = ["Tom Forbes <[email protected]>", "Clark McCauley <[email protected]>"]
77
edition = "2021"
88
license = "MIT"
99
categories = ["compilers"]
1010

1111
[dependencies]
12-
cel-parser = { path = "../parser", version = "0.7.1 " }
12+
cel-parser = { path = "../parser", version = "0.8.0" }
1313
thiserror = "1.0.40"
1414
chrono = { version = "0.4.26", default-features = false, features = ["alloc"], optional = true }
1515
nom = "7.1.3"
@@ -30,4 +30,4 @@ harness = false
3030
[features]
3131
json = ["dep:base64", "dep:serde_json"]
3232
regex = ["dep:regex"]
33-
chrono = ["dep:chrono"]
33+
chrono = ["dep:chrono"]

parser/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.8.0](https://github.com/clarkmcc/cel-rust/compare/cel-parser-v0.7.1...cel-parser-v0.8.0) - 2024-10-30
11+
12+
### Other
13+
14+
- Detailed parse error ([#102](https://github.com/clarkmcc/cel-rust/pull/102))
15+
- Update lalrpop to 0.22 from 0.19.x ([#99](https://github.com/clarkmcc/cel-rust/pull/99))
16+
- Fix `clippy::empty_line_after_doc_comments` lints ([#98](https://github.com/clarkmcc/cel-rust/pull/98))
17+
- Conformance test fixes ([#79](https://github.com/clarkmcc/cel-rust/pull/79))

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.7.1"
5+
version = "0.8.0"
66
authors = ["Tom Forbes <[email protected]>", "Clark McCauley <[email protected]>"]
77
edition = "2021"
88
license = "MIT"

0 commit comments

Comments
 (0)