Skip to content

Commit ff221c5

Browse files
authored
Merge pull request #338 from google/0.5.4
Rev version to 0.5.4
2 parents 4f73306 + db7e045 commit ff221c5

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
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.5.3"
17+
version = "0.5.4"
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.5.3" }
28-
autocxx-engine = { path="engine", version="0.5.3" } # so that
27+
autocxx-macro = { path="macro", version="0.5.4" }
28+
autocxx-engine = { path="engine", version="0.5.4" } # so that
2929
# we can refer to autocxx_engine::cxx. But even that isn't sufficient...
3030
cxx = "1.0.38" # ... also needed because expansion of type_id refers to ::cxx
3131
aquamarine = "0.1.5" # 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.5.3"
17+
version = "0.5.4"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
edition = "2018"
2020

2121
[dependencies]
2222
cxx = "1.0.38"
23-
autocxx = { path = "..", version="0.5.3" }
23+
autocxx = { path = "..", version="0.5.4" }
2424

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

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.5.3"
17+
version = "0.5.4"
1818
authors = ["Adrian Taylor <[email protected]>"]
1919
license = "MIT OR Apache-2.0"
2020
description = "Safe autogenerated interop between Rust and C++"
@@ -38,7 +38,7 @@ cc = { version = "1.0", optional = true }
3838
unzip-n = "0.1.2"
3939
cxx-gen = "0.7.38"
4040
cxx = "1.0.38"
41-
autocxx-parser = { version = "0.5.3", path="../parser" }
41+
autocxx-parser = { version = "0.5.4", path="../parser" }
4242
version_check = "0.9"
4343
aquamarine = "0.1.5" # docs
4444

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.5.3"
17+
version = "0.5.4"
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.5.3", path="../../engine", features = ["build"] }
27+
autocxx-engine = { version="0.5.4", 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.5.3"
17+
version = "0.5.4"
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.5.3", path="../../engine" }
27+
autocxx-engine = { version="0.5.4", 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.5.3"
17+
version = "0.5.4"
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.5.3" }
30+
autocxx-parser = { path="../parser", version="0.5.4" }
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.5.3"
17+
version = "0.5.4"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "autocxx-reduce"
3-
version = "0.5.3"
3+
version = "0.5.4"
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.5.3", path="../../gen/cmd" }
10+
autocxx-gen = { version = "0.5.4", path="../../gen/cmd" }
1111
clap = "~2.33.0"
1212
tempfile = "3.1"
1313
indoc = "1.0"

0 commit comments

Comments
 (0)