Skip to content

Commit 8c4beee

Browse files
Bump version numbers
1 parent 0b51fc5 commit 8c4beee

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex"
3-
version = "1.11.1" #:version
3+
version = "1.12.0" #:version
44
authors = ["The Rust Project Developers", "Andrew Gallant <jamslam@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -176,14 +176,14 @@ default-features = false
176176
# For the actual regex engines.
177177
[dependencies.regex-automata]
178178
path = "regex-automata"
179-
version = "0.4.8"
179+
version = "0.5.0"
180180
default-features = false
181181
features = ["alloc", "syntax", "meta", "nfa-pikevm"]
182182

183183
# For parsing regular expressions.
184184
[dependencies.regex-syntax]
185185
path = "regex-syntax"
186-
version = "0.8.5"
186+
version = "0.9.0"
187187
default-features = false
188188

189189
[dev-dependencies]

regex-automata/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex-automata"
3-
version = "0.4.9" #:version
3+
version = "0.5.0" #:version
44
authors = ["The Rust Project Developers", "Andrew Gallant <jamslam@gmail.com>"]
55
description = "Automata construction and matching using regular expressions."
66
documentation = "https://docs.rs/regex-automata"
@@ -86,7 +86,7 @@ internal-instrument-pikevm = ["logging", "std"]
8686
aho-corasick = { version = "1.0.0", optional = true, default-features = false }
8787
log = { version = "0.4.14", optional = true }
8888
memchr = { version = "2.6.0", optional = true, default-features = false }
89-
regex-syntax = { path = "../regex-syntax", version = "0.8.5", optional = true, default-features = false }
89+
regex-syntax = { path = "../regex-syntax", version = "0.9.0", optional = true, default-features = false }
9090

9191
[dev-dependencies]
9292
anyhow = "1.0.69"

regex-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ lexopt = "0.3.0"
2929
log = { version = "0.4.17", features = ["std"] }
3030
memmap2 = "0.9.4"
3131
regex = { version = "1.9.0", path = ".." }
32-
regex-automata = { version = "0.4.8", path = "../regex-automata", features = ["logging"] }
32+
regex-automata = { version = "0.5.0", path = "../regex-automata", features = ["logging"] }
3333
regex-lite = { version = "0.1.0", path = "../regex-lite" }
34-
regex-syntax = { version = "0.8.5", path = "../regex-syntax" }
34+
regex-syntax = { version = "0.9.0", path = "../regex-syntax" }
3535
tabwriter = { version = "1.2.1", features = ["ansi_formatting"] }
3636
textwrap = { version = "0.16.0", default-features = false }

regex-syntax/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex-syntax"
3-
version = "0.8.5" #:version
3+
version = "0.9.0" #:version
44
authors = ["The Rust Project Developers", "Andrew Gallant <jamslam@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-lang/regex/tree/master/regex-syntax"

0 commit comments

Comments
 (0)