Skip to content

Commit 85c555c

Browse files
Multimodcraftershilangyu
authored andcommitted
Bump version numbers
1 parent 5284761 commit 85c555c

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.2" #: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.10" #: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"
@@ -87,7 +87,7 @@ internal-instrument-pikevm = ["logging", "std"]
8787
aho-corasick = { version = "1.0.0", optional = true, default-features = false }
8888
log = { version = "0.4.14", optional = true }
8989
memchr = { version = "2.6.0", optional = true, default-features = false }
90-
regex-syntax = { path = "../regex-syntax", version = "0.8.5", optional = true, default-features = false }
90+
regex-syntax = { path = "../regex-syntax", version = "0.9.0", optional = true, default-features = false }
9191

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

regex-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ lexopt = "0.3.0"
3030
log = { version = "0.4.17", features = ["std"] }
3131
memmap2 = "0.9.4"
3232
regex = { version = "1.9.0", path = ".." }
33-
regex-automata = { version = "0.4.8", path = "../regex-automata", features = ["logging"] }
33+
regex-automata = { version = "0.5.0", path = "../regex-automata", features = ["logging"] }
3434
regex-lite = { version = "0.1.0", path = "../regex-lite" }
35-
regex-syntax = { version = "0.8.5", path = "../regex-syntax" }
35+
regex-syntax = { version = "0.9.0", path = "../regex-syntax" }
3636
tabwriter = { version = "1.2.1", features = ["ansi_formatting"] }
3737
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.6" #: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
homepage = "https://github.com/rust-lang/regex/tree/master/regex-syntax"

0 commit comments

Comments
 (0)