Skip to content

Commit be16bca

Browse files
committed
Bump version
1 parent 34c3f3f commit be16bca

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.5.10 - 2024-11-20
4+
5+
- `impl From<cc::Build> for cpp_build::Config`
6+
- Fix warning about unexpected cfg in crates using `cpp!`
7+
38
## 0.5.9 - 2023-08-16
49

510
- updated aha-corasick dependency

cpp/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp"
3-
version = "0.5.9"
3+
version = "0.5.10"
44
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
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.9", path = "../cpp_macros" }
15+
cpp_macros = { version = "=0.5.10", path = "../cpp_macros" }
1616

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

cpp_build/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp_build"
3-
version = "0.5.9"
3+
version = "0.5.10"
44
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
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.9" }
23+
cpp_common = { path = "../cpp_common", version = "=0.5.10" }
2424
syn = { version = "2.0", features=["full", "visit"] }
2525
proc-macro2 = "1.0"
2626
regex = "1"

cpp_common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp_common"
3-
version = "0.5.9"
3+
version = "0.5.10"
44
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
55
edition = "2018"
66
description = "Implementation details crate for the `cpp` crate"

cpp_macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpp_macros"
3-
version = "0.5.9"
3+
version = "0.5.10"
44
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
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.9" }
24+
cpp_common = { path = "../cpp_common", version = "=0.5.10" }
2525
syn = { version = "2.0", features=["full", "visit"] }
2626
quote = "1.0"
2727
proc-macro2 = "1.0"

0 commit comments

Comments
 (0)