File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All user visible changes to this project will be documented in this file.
44This project adheres to [ Semantic Versioning] ( http://semver.org/ ) , as described
55for Rust libraries in [ RFC #1105 ] ( https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md )
66
7+ ## 2.3.1 - 2025-07-06
8+
9+ * Remove ` display() ` call in ` build.rs ` that would require MSRV 1.88.
10+ * Bump MSRV to 1.77 (it was previously 1.56 but was not tested).
11+
712## 2.3.0 - 2025-07-05
813
914 * Add support for ` extract ` in pattern definitions, allowing the ` extract ` in
Original file line number Diff line number Diff line change 11[package ]
22name = " grok"
3- version = " 2.3.0 "
3+ version = " 2.3.1 "
44authors = [
" Matt Mastracci <[email protected] >" ,
" Michael Nitschinger <[email protected] >" ]
55license = " Apache-2.0"
66readme = " README.md"
@@ -15,7 +15,7 @@ patterns.
1515categories = [" text-processing" ]
1616build = " build.rs"
1717edition = " 2021"
18- rust-version = " 1.56 "
18+ rust-version = " 1.77 "
1919
2020[features ]
2121default = [" onig" ]
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ fn main() {
8181 . first ( )
8282 . unwrap ( )
8383 . 2
84- . display ( )
84+ . to_string_lossy ( )
8585 . to_string ( )
8686 . replace ( '-' , "_" ) ;
8787 fmt:: write ( & mut output, format_args ! ( "\n pub mod {name} {{\n " ) ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments