From 7056902ebf417a7664fb67d87e4ec8020625c835 Mon Sep 17 00:00:00 2001 From: Adrian Taylor Date: Fri, 24 Sep 2021 09:20:22 -0700 Subject: [PATCH] Rev to 0.12.0 --- Cargo.toml | 6 +++--- demo/Cargo.toml | 6 +++--- engine/Cargo.toml | 4 ++-- examples/s2/Cargo.toml | 4 ++-- examples/steam-mini/Cargo.toml | 4 ++-- examples/subclass/Cargo.toml | 4 ++-- gen/build/Cargo.toml | 4 ++-- gen/cmd/Cargo.toml | 4 ++-- macro/Cargo.toml | 4 ++-- parser/Cargo.toml | 2 +- tools/reduce/Cargo.toml | 6 +++--- 11 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6b0ff7d17..f0ca63913 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "autocxx" -version = "0.11.2" +version = "0.12.0" authors = ["Adrian Taylor "] license = "MIT OR Apache-2.0" description = "Safe autogenerated interop between Rust and C++" @@ -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 diff --git a/demo/Cargo.toml b/demo/Cargo.toml index 49dc81716..d8852a8cf 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -14,13 +14,13 @@ [package] name = "autocxx-demo" -version = "0.11.2" +version = "0.12.0" authors = ["Adrian Taylor "] 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" } diff --git a/engine/Cargo.toml b/engine/Cargo.toml index a16e92920..fc0d11ba0 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "autocxx-engine" -version = "0.11.2" +version = "0.12.0" authors = ["Adrian Taylor "] license = "MIT OR Apache-2.0" description = "Safe autogenerated interop between Rust and C++" @@ -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" diff --git a/examples/s2/Cargo.toml b/examples/s2/Cargo.toml index a07f36760..aef88c4b8 100644 --- a/examples/s2/Cargo.toml +++ b/examples/s2/Cargo.toml @@ -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" } diff --git a/examples/steam-mini/Cargo.toml b/examples/steam-mini/Cargo.toml index 8dba3994c..f6d37e16a 100644 --- a/examples/steam-mini/Cargo.toml +++ b/examples/steam-mini/Cargo.toml @@ -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" } diff --git a/examples/subclass/Cargo.toml b/examples/subclass/Cargo.toml index 613fb9694..8d50f8f0e 100644 --- a/examples/subclass/Cargo.toml +++ b/examples/subclass/Cargo.toml @@ -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" \ No newline at end of file diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index b0b1d906a..e7b2937a0 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "autocxx-build" -version = "0.11.2" +version = "0.12.0" authors = ["Adrian Taylor "] edition = "2018" license = "MIT OR Apache-2.0" @@ -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] diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index ea63de76f..ff18f822d 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "autocxx-gen" -version = "0.11.2" +version = "0.12.0" authors = ["Adrian Taylor "] edition = "2018" license = "MIT OR Apache-2.0" @@ -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" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index da4498ee5..f4d9e628d 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "autocxx-macro" -version = "0.11.2" +version = "0.12.0" authors = ["Adrian Taylor "] license = "MIT OR Apache-2.0" description = "Safe autogenerated interop between Rust and C++" @@ -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" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 87f64be4a..03a2016ef 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -14,7 +14,7 @@ [package] name = "autocxx-parser" -version = "0.11.2" +version = "0.12.0" authors = ["Adrian Taylor "] license = "MIT OR Apache-2.0" description = "Safe autogenerated interop between Rust and C++" diff --git a/tools/reduce/Cargo.toml b/tools/reduce/Cargo.toml index b0ff11903..8d7c1ad50 100644 --- a/tools/reduce/Cargo.toml +++ b/tools/reduce/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "autocxx-reduce" -version = "0.11.2" +version = "0.12.0" authors = ["adetaylor "] 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"