Skip to content

Commit 9eda55b

Browse files
committed
Prepare 0.5.9 release
1 parent 4fb4bfa commit 9eda55b

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## 0.5.8 - 20223-03-30
3+
## 0.5.9 - 2023-08-16
4+
5+
- updated aha-corasick dependency
6+
7+
## 0.5.8 - 2023-03-30
48

59
- Fixed clippy warnings
610
- Added `parallel` feature forwarding to `cc/parallel`

cpp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint-ui.com>"]
55
edition = "2018"
66
description = "Inline C++ code closures"
@@ -12,7 +12,7 @@ repository = "https://github.com/mystor/rust-cpp"
1212
documentation = "https://docs.rs/cpp"
1313

1414
[dependencies]
15-
cpp_macros = { version = "=0.5.8", path = "../cpp_macros" }
15+
cpp_macros = { version = "=0.5.9", path = "../cpp_macros" }
1616

1717
[dev-dependencies]
18-
cpp_build = { version = "=0.5.8", path = "../cpp_build" }
18+
cpp_build = { version = "=0.5.9", path = "../cpp_build" }

cpp_build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp_build"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint-ui.com>"]
55
edition = "2018"
66
description = "Cargo build script for the `cpp` crate"
@@ -20,7 +20,7 @@ parallel = ["cc/parallel"]
2020
[dependencies]
2121
lazy_static = "1.0"
2222
cc = "1.0.38"
23-
cpp_common = { path = "../cpp_common", version = "=0.5.8" }
23+
cpp_common = { path = "../cpp_common", version = "=0.5.9" }
2424
syn = { version = "2.0", features=["full", "visit"] }
2525
proc-macro2 = "1.0"
2626
regex = "1"

cpp_common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp_common"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint-ui.com>"]
55
edition = "2018"
66
description = "Implementation details crate for the `cpp` crate"

cpp_macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp_macros"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint-ui.com>"]
55
edition = "2018"
66
description = "Procedural macro implementation for the `cpp` crate"
@@ -21,7 +21,7 @@ proc-macro = true
2121

2222
[dependencies]
2323
lazy_static = "1.0"
24-
cpp_common = { path = "../cpp_common", version = "=0.5.8" }
24+
cpp_common = { path = "../cpp_common", version = "=0.5.9" }
2525
syn = { version = "2.0", features=["full", "visit"] }
2626
quote = "1.0"
2727
proc-macro2 = "1.0"

0 commit comments

Comments
 (0)