Skip to content

Commit

Permalink
Merge pull request #627 from google/rev-0.12
Browse files Browse the repository at this point in the history
Rev to 0.12.0
  • Loading branch information
adetaylor authored Sep 24, 2021
2 parents 7753143 + 7056902 commit 3efc711
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx"
version = "0.11.2"
version = "0.12.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
license = "MIT OR Apache-2.0"
description = "Safe autogenerated interop between Rust and C++"
Expand All @@ -24,8 +24,8 @@ keywords = ["ffi"]
categories = ["development-tools::ffi", "api-bindings"]

[dependencies]
autocxx-macro = { path="macro", version="0.11.2" }
autocxx-engine = { path="engine", version="0.11.2" } # so that
autocxx-macro = { path="macro", version="0.12.0" }
autocxx-engine = { path="engine", version="0.12.0" } # so that
# we can refer to autocxx_engine::cxx. But even that isn't sufficient...
cxx = "1.0.54" # ... also needed because expansion of type_id refers to ::cxx
aquamarine = "0.1" # docs
Expand Down
6 changes: 3 additions & 3 deletions demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

[package]
name = "autocxx-demo"
version = "0.11.2"
version = "0.12.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
edition = "2018"

[dependencies]
cxx = "1.0.54"
autocxx = { path = "..", version="0.11.2" }
autocxx = { path = "..", version="0.12.0" }

[build-dependencies]
autocxx-build = { path = "../gen/build", version="0.11.2" }
autocxx-build = { path = "../gen/build", version="0.12.0" }
4 changes: 2 additions & 2 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-engine"
version = "0.11.2"
version = "0.12.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
license = "MIT OR Apache-2.0"
description = "Safe autogenerated interop between Rust and C++"
Expand All @@ -40,7 +40,7 @@ unzip-n = "0.1.2"
# what cxx expects to be there.
cxx-gen = "0.7.54"
cxx = "1.0.54"
autocxx-parser = { version = "=0.11.2", path="../parser" }
autocxx-parser = { version = "=0.12.0", path="../parser" }
version_check = "0.9"
aquamarine = "0.1" # docs
tempfile = "3.1"
Expand Down
4 changes: 2 additions & 2 deletions examples/s2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ edition = "2018"

[dependencies]
cxx = "1.0.54"
autocxx = { path = "../..", version="0.11.2" }
autocxx = { path = "../..", version="0.12.0" }

[build-dependencies]
autocxx-build = { path = "../../gen/build", version="0.11.2" }
autocxx-build = { path = "../../gen/build", version="0.12.0" }
4 changes: 2 additions & 2 deletions examples/steam-mini/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ edition = "2018"

[dependencies]
cxx = "1.0.54"
autocxx = { path = "../..", version="0.11.2" }
autocxx = { path = "../..", version="0.12.0" }

[build-dependencies]
autocxx-build = { path = "../../gen/build", version="0.11.2" }
autocxx-build = { path = "../../gen/build", version="0.12.0" }
4 changes: 2 additions & 2 deletions examples/subclass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ edition = "2018"

[dependencies]
cxx = "1.0.54"
autocxx = { path = "../..", version="0.11.2" }
autocxx = { path = "../..", version="0.12.0" }
uwuify = "0.2.2"
textwrap = "0.14"
fastrand = "1.5.0"

[build-dependencies]
autocxx-build = { path = "../../gen/build", version="0.11.2" }
autocxx-build = { path = "../../gen/build", version="0.12.0" }
regex = "1.5.4"
4 changes: 2 additions & 2 deletions gen/build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-build"
version = "0.11.2"
version = "0.12.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -24,7 +24,7 @@ keywords = ["ffi"]
categories = ["development-tools::ffi", "api-bindings"]

[dependencies]
autocxx-engine = { version="=0.11.2", path="../../engine", features = ["build"] }
autocxx-engine = { version="=0.12.0", path="../../engine", features = ["build"] }
env_logger = "0.9.0"

[dependencies.syn]
Expand Down
4 changes: 2 additions & 2 deletions gen/cmd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-gen"
version = "0.11.2"
version = "0.12.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -24,7 +24,7 @@ keywords = ["ffi"]
categories = ["development-tools::ffi", "api-bindings"]

[dependencies]
autocxx-engine = { version="=0.11.2", path="../../engine" }
autocxx-engine = { version="=0.12.0", path="../../engine" }
clap = "~2.33"
quote = "1.0.7"
proc-macro2 = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-macro"
version = "0.11.2"
version = "0.12.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
license = "MIT OR Apache-2.0"
description = "Safe autogenerated interop between Rust and C++"
Expand All @@ -27,7 +27,7 @@ categories = ["development-tools::ffi", "api-bindings"]
proc-macro = true

[dependencies]
autocxx-parser = { path="../parser", version="=0.11.2" }
autocxx-parser = { path="../parser", version="=0.12.0" }
proc-macro-error = "1.0"
proc-macro2 = "1.0.11"
quote = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "autocxx-parser"
version = "0.11.2"
version = "0.12.0"
authors = ["Adrian Taylor <adetaylor@chromium.org>"]
license = "MIT OR Apache-2.0"
description = "Safe autogenerated interop between Rust and C++"
Expand Down
6 changes: 3 additions & 3 deletions tools/reduce/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "autocxx-reduce"
version = "0.11.2"
version = "0.12.0"
authors = ["adetaylor <adetaylor@chromium.org>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
autocxx-gen = { version = "=0.11.2", path="../../gen/cmd" }
autocxx-engine = { version = "=0.11.2", path="../../engine" }
autocxx-gen = { version = "=0.12.0", path="../../gen/cmd" }
autocxx-engine = { version = "=0.12.0", path="../../engine" }
clap = "~2.33.0"
tempfile = "3.1"
indoc = "1.0"
Expand Down

0 comments on commit 3efc711

Please sign in to comment.