Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ogoffart committed Nov 20, 2024
1 parent 34c3f3f commit be16bca
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.10 - 2024-11-20

- `impl From<cc::Build> for cpp_build::Config`
- Fix warning about unexpected cfg in crates using `cpp!`

## 0.5.9 - 2023-08-16

- updated aha-corasick dependency
Expand Down
6 changes: 3 additions & 3 deletions cpp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cpp"
version = "0.5.9"
version = "0.5.10"
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
edition = "2018"
description = "Inline C++ code closures"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/mystor/rust-cpp"
documentation = "https://docs.rs/cpp"

[dependencies]
cpp_macros = { version = "=0.5.9", path = "../cpp_macros" }
cpp_macros = { version = "=0.5.10", path = "../cpp_macros" }

[dev-dependencies]
cpp_build = { version = "=0.5.9", path = "../cpp_build" }
cpp_build = { version = "=0.5.10", path = "../cpp_build" }
4 changes: 2 additions & 2 deletions cpp_build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cpp_build"
version = "0.5.9"
version = "0.5.10"
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
edition = "2018"
description = "Cargo build script for the `cpp` crate"
Expand All @@ -20,7 +20,7 @@ parallel = ["cc/parallel"]
[dependencies]
lazy_static = "1.0"
cc = "1.0.38"
cpp_common = { path = "../cpp_common", version = "=0.5.9" }
cpp_common = { path = "../cpp_common", version = "=0.5.10" }
syn = { version = "2.0", features=["full", "visit"] }
proc-macro2 = "1.0"
regex = "1"
Expand Down
2 changes: 1 addition & 1 deletion cpp_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cpp_common"
version = "0.5.9"
version = "0.5.10"
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
edition = "2018"
description = "Implementation details crate for the `cpp` crate"
Expand Down
4 changes: 2 additions & 2 deletions cpp_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cpp_macros"
version = "0.5.9"
version = "0.5.10"
authors = ["Nika Layzell <[email protected]>", "Olivier Goffart <[email protected]>"]
edition = "2018"
description = "Procedural macro implementation for the `cpp` crate"
Expand All @@ -21,7 +21,7 @@ proc-macro = true

[dependencies]
lazy_static = "1.0"
cpp_common = { path = "../cpp_common", version = "=0.5.9" }
cpp_common = { path = "../cpp_common", version = "=0.5.10" }
syn = { version = "2.0", features=["full", "visit"] }
quote = "1.0"
proc-macro2 = "1.0"
Expand Down

0 comments on commit be16bca

Please sign in to comment.