Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 29, 2024
1 parent d9e8012 commit ddf3e29
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 4 deletions.
20 changes: 20 additions & 0 deletions interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.9.0](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.8.1...cel-interpreter-v0.9.0) - 2024-10-29

### Other

- Detailed parse error ([#102](https://github.com/clarkmcc/cel-rust/pull/102))
- Fix `clippy::too_long_first_doc_paragraph` lints. ([#101](https://github.com/clarkmcc/cel-rust/pull/101))
- Support empty/default contexts, put chrono/regex behind features ([#97](https://github.com/clarkmcc/cel-rust/pull/97))
- Fix `clippy::empty_line_after_doc_comments` lints ([#98](https://github.com/clarkmcc/cel-rust/pull/98))
- Allow `.size()` method on types ([#88](https://github.com/clarkmcc/cel-rust/pull/88))
- Conformance test fixes ([#79](https://github.com/clarkmcc/cel-rust/pull/79))
- Convert CEL values to JSON ([#77](https://github.com/clarkmcc/cel-rust/pull/77))
6 changes: 3 additions & 3 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.8.1"
version = "0.9.0"
authors = ["Tom Forbes <tom@tomforb.es>", "Clark McCauley <me@clarkmccauley.com>"]
edition = "2021"
license = "MIT"
categories = ["compilers"]

[dependencies]
cel-parser = { path = "../parser", version = "0.7.1 " }
cel-parser = { path = "../parser", version = "0.8.0" }
thiserror = "1.0.40"
chrono = { version = "0.4.26", default-features = false, features = ["alloc"], optional = true }
nom = "7.1.3"
Expand All @@ -30,4 +30,4 @@ harness = false
[features]
json = ["dep:base64", "dep:serde_json"]
regex = ["dep:regex"]
chrono = ["dep:chrono"]
chrono = ["dep:chrono"]
17 changes: 17 additions & 0 deletions parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

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

### Other

- Detailed parse error ([#102](https://github.com/clarkmcc/cel-rust/pull/102))
- Update lalrpop to 0.22 from 0.19.x ([#99](https://github.com/clarkmcc/cel-rust/pull/99))
- Fix `clippy::empty_line_after_doc_comments` lints ([#98](https://github.com/clarkmcc/cel-rust/pull/98))
- Conformance test fixes ([#79](https://github.com/clarkmcc/cel-rust/pull/79))
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.7.1"
version = "0.8.0"
authors = ["Tom Forbes <tom@tomforb.es>", "Clark McCauley <me@clarkmccauley.com>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit ddf3e29

Please sign in to comment.