Skip to content

Commit c7861e8

Browse files
committed
Revise to 0.19.1.
1 parent a6c59fe commit c7861e8

File tree

18 files changed

+42
-42
lines changed

18 files changed

+42
-42
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

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

99
[package]
1010
name = "autocxx"
11-
version = "0.19.0"
11+
version = "0.19.1"
1212
authors = ["Adrian Taylor <[email protected]>"]
1313
license = "MIT OR Apache-2.0"
1414
description = "Safe autogenerated interop between Rust and C++"
@@ -25,7 +25,7 @@ exclude = [ ".github", "book", "tools" ]
2525
resolver = "2"
2626

2727
[dependencies]
28-
autocxx-macro = { path="macro", version="0.19.0" }
28+
autocxx-macro = { path="macro", version="0.19.1" }
2929
cxx = "1.0.54" # ... also needed because expansion of type_id refers to ::cxx
3030
aquamarine = "0.1" # docs
3131
moveit = { version = "0.5", features = [ "cxx" ] }

book/src/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ First, add `autocxx` *and `cxx`* to your `dependencies` and `autocxx-build` to y
1919

2020
```toml
2121
[dependencies]
22-
autocxx = "0.19.0"
22+
autocxx = "0.19.1"
2323
cxx = "1.0"
2424

2525
[build-dependencies]
26-
autocxx-build = "0.19.0"
26+
autocxx-build = "0.19.1"
2727
miette = { version="4.3", features=["fancy"] } // optional but gives nicer error messages!
2828
```
2929

demo/Cargo.toml

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

99
[package]
1010
name = "autocxx-demo"
11-
version = "0.19.0"
11+
version = "0.19.1"
1212
authors = ["Adrian Taylor <[email protected]>"]
1313
edition = "2021"
1414

1515
[dependencies]
1616
cxx = "1.0.54"
17-
autocxx = { path = "..", version="0.19.0" }
17+
autocxx = { path = "..", version="0.19.1" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../gen/build", version="0.19.0" }
20+
autocxx-build = { path = "../gen/build", version="0.19.1" }
2121
miette = { version="4.3", features=["fancy"]}

engine/Cargo.toml

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

99
[package]
1010
name = "autocxx-engine"
11-
version = "0.19.0"
11+
version = "0.19.1"
1212
authors = ["Adrian Taylor <[email protected]>"]
1313
license = "MIT OR Apache-2.0"
1414
description = "Safe autogenerated interop between Rust and C++"
@@ -38,7 +38,7 @@ cc = { version = "1.0", optional = true }
3838
# There can be interdependencies between the code generated by cxx-gen and
3939
# what cxx expects to be there.
4040
cxx-gen = "0.7.54"
41-
autocxx-parser = { version = "=0.19.0", path="../parser" }
41+
autocxx-parser = { version = "=0.19.1", path="../parser" }
4242
version_check = "0.9"
4343
aquamarine = "0.1" # docs
4444
tempfile = "3.1"

examples/chromium-fake-render-frame-host/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ edition = "2021"
1414

1515
[dependencies]
1616
cxx = "1.0.54"
17-
autocxx = { path = "../..", version="0.19.0" }
17+
autocxx = { path = "../..", version="0.19.1" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../../gen/build", version="0.19.0" }
20+
autocxx-build = { path = "../../gen/build", version="0.19.1" }
2121
miette = { version="4.3", features = [ "fancy" ] }

examples/non-trivial-type-on-stack/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ edition = "2021"
1414

1515
[dependencies]
1616
cxx = "1.0.54"
17-
autocxx = { path = "../..", version="0.19.0" }
17+
autocxx = { path = "../..", version="0.19.1" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../../gen/build", version="0.19.0" }
20+
autocxx-build = { path = "../../gen/build", version="0.19.1" }
2121
miette = { version="4.3", features = [ "fancy" ] }

examples/pod/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ edition = "2021"
1414

1515
[dependencies]
1616
cxx = "1.0.54"
17-
autocxx = { path = "../..", version="0.19.0" }
17+
autocxx = { path = "../..", version="0.19.1" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../../gen/build", version="0.19.0" }
20+
autocxx-build = { path = "../../gen/build", version="0.19.1" }
2121
miette = { version="4.3", features = [ "fancy" ] }

examples/s2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ edition = "2021"
1616

1717
[dependencies]
1818
cxx = "1.0.54"
19-
autocxx = { path = "../..", version="0.19.0" }
19+
autocxx = { path = "../..", version="0.19.1" }
2020

2121
[build-dependencies]
22-
autocxx-build = { path = "../../gen/build", version="0.19.0" }
22+
autocxx-build = { path = "../../gen/build", version="0.19.1" }
2323
miette = { version="4.3", features = [ "fancy" ] }

examples/steam-mini/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ edition = "2021"
1616

1717
[dependencies]
1818
cxx = "1.0.54"
19-
autocxx = { path = "../..", version="0.19.0" }
19+
autocxx = { path = "../..", version="0.19.1" }
2020

2121
[build-dependencies]
22-
autocxx-build = { path = "../../gen/build", version="0.19.0" }
22+
autocxx-build = { path = "../../gen/build", version="0.19.1" }
2323
miette = { version="4.3", features = [ "fancy" ] }

0 commit comments

Comments
 (0)