From 004ea1e6c8d73c979fbd4888e5ef7c13e37c2845 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 06:03:25 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- crates/grit-pattern-matcher/CHANGELOG.md | 7 +++++++ crates/grit-pattern-matcher/Cargo.toml | 2 +- crates/grit-util/CHANGELOG.md | 12 ++++++++++++ 5 files changed, 25 insertions(+), 6 deletions(-) create mode 100644 crates/grit-pattern-matcher/CHANGELOG.md create mode 100644 crates/grit-util/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index c42860b50..742f27459 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1400,7 +1400,7 @@ dependencies = [ [[package]] name = "grit-pattern-matcher" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "elsa", @@ -1414,7 +1414,7 @@ dependencies = [ [[package]] name = "grit-util" -version = "0.3.0" +version = "0.3.1" dependencies = [ "derive_builder", "napi", @@ -1426,7 +1426,7 @@ dependencies = [ [[package]] name = "grit-wasm-bindings" -version = "0.3.0" +version = "0.3.1" dependencies = [ "ai_builtins", "anyhow", @@ -2166,7 +2166,7 @@ dependencies = [ [[package]] name = "marzano-gritmodule" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "fs-err", diff --git a/Cargo.toml b/Cargo.toml index 8810ff029..bb928cf7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ exclude = [ ] [workspace.package] -version = "0.3.0" +version = "0.3.1" authors = ["Iuvo AI, Inc.", "Grit Contributors"] description = "GritQL is a query language for searching, linting, and modifying code." repository = "https://github.com/getgrit/gritql/" diff --git a/crates/grit-pattern-matcher/CHANGELOG.md b/crates/grit-pattern-matcher/CHANGELOG.md new file mode 100644 index 000000000..d94e3d6c6 --- /dev/null +++ b/crates/grit-pattern-matcher/CHANGELOG.md @@ -0,0 +1,7 @@ +# 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] diff --git a/crates/grit-pattern-matcher/Cargo.toml b/crates/grit-pattern-matcher/Cargo.toml index 8337a3303..ebdcf8392 100644 --- a/crates/grit-pattern-matcher/Cargo.toml +++ b/crates/grit-pattern-matcher/Cargo.toml @@ -18,7 +18,7 @@ rust.unused_crate_dependencies = "warn" anyhow = { version = "1.0.70" } elsa = { version = "1.9.0" } getrandom = { version = "0.2.11", optional = true } -grit-util = { path = "../grit-util", version = "0.3.0" } +grit-util = { path = "../grit-util", version = "0.3.1" } im = { version = "15.1.0" } itertools = { version = "0.10.5" } rand = { version = "0.8.5" } diff --git a/crates/grit-util/CHANGELOG.md b/crates/grit-util/CHANGELOG.md new file mode 100644 index 000000000..2caded3de --- /dev/null +++ b/crates/grit-util/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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.3.1](https://github.com/getgrit/gritql/compare/grit-util-v0.3.0...grit-util-v0.3.1) - 2024-07-04 + +### Added +- include content in match results ([#391](https://github.com/getgrit/gritql/pull/391))