Skip to content

Commit 8904675

Browse files
committed
Add Clone to Grok
1 parent 27f55dd commit 8904675

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All user visible changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/), as described
55
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
66

7-
## 2.3.2 - 2025-07-31
7+
## 2.3.3 - 2025-07-31
88

99
* Add `Clone` to `Grok`.
1010

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grok"
3-
version = "2.3.2"
3+
version = "2.3.3"
44
authors = ["Matt Mastracci <[email protected]>", "Michael Nitschinger <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ pub mod parser {
235235
}
236236

237237
/// The `Grok` struct is the main entry point into using this library.
238-
#[derive(Debug)]
238+
#[derive(Clone, Debug)]
239239
pub struct Grok {
240240
#[allow(unused)]
241241
engine: Engine,

0 commit comments

Comments
 (0)