Skip to content

Commit 60230d2

Browse files
authored
Merge pull request #1299 from google/rev-0.26
Revise to 0.26.
2 parents 5492cb2 + 10346e8 commit 60230d2

File tree

22 files changed

+56
-56
lines changed

22 files changed

+56
-56
lines changed

Cargo.lock

Lines changed: 10 additions & 10 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.25.0"
11+
version = "0.26.0"
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.25.0" }
28+
autocxx-macro = { path="macro", version="0.26.0" }
2929
cxx = "1.0.78" # ... also needed because expansion of type_id refers to ::cxx
3030
aquamarine = "0.1" # docs
3131
moveit = { version = "0.6", features = [ "cxx" ] }

book/src/tutorial.md

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

2222
```toml
2323
[dependencies]
24-
autocxx = "0.25.0"
24+
autocxx = "0.26.0"
2525
cxx = "1.0"
2626

2727
[build-dependencies]
28-
autocxx-build = "0.25.0"
28+
autocxx-build = "0.26.0"
2929
miette = { version = "5", features = ["fancy"] } # optional but gives nicer error messages!
3030
```
3131

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.25.0"
11+
version = "0.26.0"
1212
authors = ["Adrian Taylor <[email protected]>"]
1313
edition = "2021"
1414

1515
[dependencies]
1616
cxx = "1.0.78"
17-
autocxx = { path = "..", version = "0.25.0" }
17+
autocxx = { path = "..", version = "0.26.0" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../gen/build", version = "0.25.0" }
20+
autocxx-build = { path = "../gen/build", version = "0.26.0" }
2121
miette = { version = "5", 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.25.0"
11+
version = "0.26.0"
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.78"
41-
autocxx-parser = { version = "=0.25.0", path = "../parser" }
41+
autocxx-parser = { version = "=0.26.0", path = "../parser" }
4242
version_check = "0.9"
4343
aquamarine = "0.1" # docs
4444
tempfile = "3.4"

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.78"
17-
autocxx = { path = "../..", version = "0.25.0" }
17+
autocxx = { path = "../..", version = "0.26.0" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../../gen/build", version = "0.25.0" }
20+
autocxx-build = { path = "../../gen/build", version = "0.26.0" }
2121
miette = { version = "5", features = ["fancy"] }

examples/cpp_calling_rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ edition = "2021"
1515

1616
[dependencies]
1717
cxx = "1.0.78"
18-
autocxx = { path = "../..", version="0.25.0" }
18+
autocxx = { path = "../..", version="0.26.0" }
1919
uwuify = "0.2.2"
2020
textwrap = "0.14"
2121
fastrand = "1.5.0"
2222

2323
[build-dependencies]
24-
autocxx-build = { path = "../../gen/build", version="0.25.0" }
24+
autocxx-build = { path = "../../gen/build", version="0.26.0" }
2525
regex = "1.5.4"
2626
miette = { version="5", features = [ "fancy" ] }

examples/llvm/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.78"
17-
autocxx = { path = "../..", version = "0.25.0" }
17+
autocxx = { path = "../..", version = "0.26.0" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../../gen/build", version = "0.25.0" }
20+
autocxx-build = { path = "../../gen/build", version = "0.26.0" }
2121
miette = { version = "5", 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.78"
17-
autocxx = { path = "../..", version = "0.25.0" }
17+
autocxx = { path = "../..", version = "0.26.0" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../../gen/build", version = "0.25.0" }
20+
autocxx-build = { path = "../../gen/build", version = "0.26.0" }
2121
miette = { version = "5", 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.78"
17-
autocxx = { path = "../..", version = "0.25.0" }
17+
autocxx = { path = "../..", version = "0.26.0" }
1818

1919
[build-dependencies]
20-
autocxx-build = { path = "../../gen/build", version = "0.25.0" }
20+
autocxx-build = { path = "../../gen/build", version = "0.26.0" }
2121
miette = { version = "5", features = ["fancy"] }

0 commit comments

Comments
 (0)