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 17, 2024
1 parent befc792 commit 05ca163
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 5 deletions.
19 changes: 19 additions & 0 deletions interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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.2](https://github.com/clarkmcc/cel-rust/compare/cel-interpreter-v0.8.1...cel-interpreter-v0.8.2) - 2024-10-17

### Other

- 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.8.2"
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.7.2" }
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"]
16 changes: 16 additions & 0 deletions parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 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.7.2](https://github.com/clarkmcc/cel-rust/compare/cel-parser-v0.7.1...cel-parser-v0.7.2) - 2024-10-17

### Other

- 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))
4 changes: 2 additions & 2 deletions 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.7.2"
authors = ["Tom Forbes <tom@tomforb.es>", "Clark McCauley <me@clarkmccauley.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -20,4 +20,4 @@ lalrpop = { version = "0.22.0", features = ["lexer"] }

[[bench]]
name = "runtime"
harness = false
harness = false

0 comments on commit 05ca163

Please sign in to comment.