-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #585 from google/rev-0.11.1
Rev to 0.11.1
- Loading branch information
Showing
10 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
[package] | ||
name = "autocxx" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Adrian Taylor <[email protected]>"] | ||
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.0" } | ||
autocxx-engine = { path="engine", version="0.11.0" } # so that | ||
autocxx-macro = { path="macro", version="0.11.1" } | ||
autocxx-engine = { path="engine", version="0.11.1" } # so that | ||
# we can refer to autocxx_engine::cxx. But even that isn't sufficient... | ||
cxx = "1.0.52" # ... also needed because expansion of type_id refers to ::cxx | ||
aquamarine = "0.1" # docs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,13 @@ | |
|
||
[package] | ||
name = "autocxx-demo" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Adrian Taylor <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
cxx = "1.0.52" | ||
autocxx = { path = "..", version="0.11.0" } | ||
autocxx = { path = "..", version="0.11.1" } | ||
|
||
[build-dependencies] | ||
autocxx-build = { path = "../gen/build", version="0.11.0" } | ||
autocxx-build = { path = "../gen/build", version="0.11.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
[package] | ||
name = "autocxx-engine" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Adrian Taylor <[email protected]>"] | ||
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.52" | ||
cxx = "1.0.52" | ||
autocxx-parser = { version = "0.11.0", path="../parser" } | ||
autocxx-parser = { version = "0.11.1", path="../parser" } | ||
version_check = "0.9" | ||
aquamarine = "0.1" # docs | ||
tempfile = "3.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
[package] | ||
name = "autocxx-build" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Adrian Taylor <[email protected]>"] | ||
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.0", path="../../engine", features = ["build"] } | ||
autocxx-engine = { version="0.11.1", path="../../engine", features = ["build"] } | ||
env_logger = "0.8.2" | ||
|
||
[dependencies.syn] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
[package] | ||
name = "autocxx-gen" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Adrian Taylor <[email protected]>"] | ||
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.0", path="../../engine" } | ||
autocxx-engine = { version="0.11.1", path="../../engine" } | ||
clap = "~2.33" | ||
indoc = "1.0" | ||
quote = "1.0.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
[package] | ||
name = "autocxx-macro" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Adrian Taylor <[email protected]>"] | ||
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.0" } | ||
autocxx-parser = { path="../parser", version="0.11.1" } | ||
proc-macro-error = "1.0" | ||
|
||
[dependencies.syn] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
[package] | ||
name = "autocxx-parser" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["Adrian Taylor <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
description = "Safe autogenerated interop between Rust and C++" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "autocxx-reduce" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
authors = ["adetaylor <[email protected]>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
autocxx-gen = { version = "0.11.0", path="../../gen/cmd" } | ||
autocxx-engine = { version = "0.11.0", path="../../engine" } | ||
autocxx-gen = { version = "0.11.1", path="../../gen/cmd" } | ||
autocxx-engine = { version = "0.11.1", path="../../engine" } | ||
clap = "~2.33.0" | ||
tempfile = "3.1" | ||
indoc = "1.0" | ||
|