Skip to content

Commit ec7bc77

Browse files
authored
Merge pull request #444 from google/0.7.0-revision
Rev to 0.7.0.
2 parents 1e1f4f0 + d6246fa commit ec7bc77

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "autocxx"
17-
version = "0.6.0"
17+
version = "0.7.0"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
2020
description = "Safe autogenerated interop between Rust and C++"
@@ -24,8 +24,8 @@ keywords = ["ffi"]
2424
categories = ["development-tools::ffi", "api-bindings"]
2525

2626
[dependencies]
27-
autocxx-macro = { path="macro", version="0.6.0" }
28-
autocxx-engine = { path="engine", version="0.6.0" } # so that
27+
autocxx-macro = { path="macro", version="0.7.0" }
28+
autocxx-engine = { path="engine", version="0.7.0" } # so that
2929
# we can refer to autocxx_engine::cxx. But even that isn't sufficient...
3030
cxx = "1.0.44" # ... also needed because expansion of type_id refers to ::cxx
3131
aquamarine = "0.1" # docs

demo/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414

1515
[package]
1616
name = "autocxx-demo"
17-
version = "0.6.0"
17+
version = "0.7.0"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
edition = "2018"
2020

2121
[dependencies]
2222
cxx = "1.0.44"
23-
autocxx = { path = "..", version="0.6.0" }
23+
autocxx = { path = "..", version="0.7.0" }
2424

2525
[build-dependencies]
26-
autocxx-build = { path = "../gen/build", version="0.6.0" }
26+
autocxx-build = { path = "../gen/build", version="0.7.0" }

engine/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "autocxx-engine"
17-
version = "0.6.0"
17+
version = "0.7.0"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
2020
description = "Safe autogenerated interop between Rust and C++"
@@ -40,7 +40,7 @@ unzip-n = "0.1.2"
4040
# what cxx expects to be there.
4141
cxx-gen = "0.7.44"
4242
cxx = "1.0.44"
43-
autocxx-parser = { version = "0.6.0", path="../parser" }
43+
autocxx-parser = { version = "0.7.0", path="../parser" }
4444
version_check = "0.9"
4545
aquamarine = "0.1" # docs
4646
tempfile = "3.1"

examples/s2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ edition = "2018"
2222

2323
[dependencies]
2424
cxx = "1.0.44"
25-
autocxx = { path = "../..", version="0.6.0" }
25+
autocxx = { path = "../..", version="0.7.0" }
2626

2727
[build-dependencies]
28-
autocxx-build = { path = "../../gen/build", version="0.6.0" }
28+
autocxx-build = { path = "../../gen/build", version="0.7.0" }

gen/build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "autocxx-build"
17-
version = "0.6.0"
17+
version = "0.7.0"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
edition = "2018"
2020
license = "MIT OR Apache-2.0"
@@ -24,7 +24,7 @@ keywords = ["ffi"]
2424
categories = ["development-tools::ffi", "api-bindings"]
2525

2626
[dependencies]
27-
autocxx-engine = { version="0.6.0", path="../../engine", features = ["build"] }
27+
autocxx-engine = { version="0.7.0", path="../../engine", features = ["build"] }
2828
env_logger = "0.8.2"
2929

3030
[dependencies.syn]

gen/cmd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "autocxx-gen"
17-
version = "0.6.0"
17+
version = "0.7.0"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
edition = "2018"
2020
license = "MIT OR Apache-2.0"
@@ -24,7 +24,7 @@ keywords = ["ffi"]
2424
categories = ["development-tools::ffi", "api-bindings"]
2525

2626
[dependencies]
27-
autocxx-engine = { version="0.6.0", path="../../engine" }
27+
autocxx-engine = { version="0.7.0", path="../../engine" }
2828
clap = "~2.33"
2929
indoc = "1.0"
3030
quote = "1.0.7"

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "autocxx-macro"
17-
version = "0.6.0"
17+
version = "0.7.0"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
2020
description = "Safe autogenerated interop between Rust and C++"
@@ -27,7 +27,7 @@ categories = ["development-tools::ffi", "api-bindings"]
2727
proc-macro = true
2828

2929
[dependencies]
30-
autocxx-parser = { path="../parser", version="0.6.0" }
30+
autocxx-parser = { path="../parser", version="0.7.0" }
3131
proc-macro-error = "1.0"
3232

3333
[dependencies.syn]

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "autocxx-parser"
17-
version = "0.6.0"
17+
version = "0.7.0"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
2020
description = "Safe autogenerated interop between Rust and C++"

tools/reduce/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "autocxx-reduce"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["adetaylor <[email protected]>"]
55
edition = "2018"
66

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

99
[dependencies]
10-
autocxx-gen = { version = "0.6.0", path="../../gen/cmd" }
11-
autocxx-engine = { version = "0.6.0", path="../../engine" }
10+
autocxx-gen = { version = "0.7.0", path="../../gen/cmd" }
11+
autocxx-engine = { version = "0.7.0", path="../../engine" }
1212
clap = "~2.33.0"
1313
tempfile = "3.1"
1414
indoc = "1.0"

0 commit comments

Comments
 (0)