diff --git a/CHANGELOG.md b/CHANGELOG.md index 32616c0b5..b89df723b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -1.8.0 (TBD) -=========== +1.8.0 (2023-04-20) +================== This is a sizeable release that will be soon followed by another sizeable release. Both of them will combined close over 40 existing issues and PRs. diff --git a/Cargo.toml b/Cargo.toml index f4c70aa1a..6c523f6f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "regex" -version = "1.7.3" #:version +version = "1.8.0" #:version authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -112,13 +112,13 @@ optional = true # For skipping along search text quickly when a leading byte is known. [dependencies.memchr] -version = "2.4.0" +version = "2.5.0" optional = true # For parsing regular expressions. [dependencies.regex-syntax] path = "regex-syntax" -version = "0.6.29" +version = "0.7.0" default-features = false [dev-dependencies] diff --git a/bench/Cargo.toml b/bench/Cargo.toml index 63ee241ba..5dfcb93cc 100644 --- a/bench/Cargo.toml +++ b/bench/Cargo.toml @@ -19,8 +19,8 @@ libc = "0.2" onig = { version = "3", optional = true } libpcre-sys = { version = "0.2", optional = true } memmap = "0.6.2" -regex = { version = "1", path = ".." } -regex-syntax = { version = "0.6", path = "../regex-syntax" } +regex = { version = "1.8.0", path = ".." } +regex-syntax = { version = "0.7.0", path = "../regex-syntax" } serde = { version = "1", features = ["derive"] } cfg-if = "0.1" diff --git a/regex-syntax/Cargo.toml b/regex-syntax/Cargo.toml index 6ae9b8485..b2c85baba 100644 --- a/regex-syntax/Cargo.toml +++ b/regex-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "regex-syntax" -version = "0.6.29" #:version +version = "0.7.0" #:version authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/regex"