Skip to content

Commit 27275f3

Browse files
committed
Bump version to 0.15.0
1 parent b0dac94 commit 27275f3

File tree

8 files changed

+30
-30
lines changed

8 files changed

+30
-30
lines changed

Cargo.lock

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

c2rust-ast-builder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-ast-builder"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = [
55
"The C2Rust Project Developers <[email protected]>",
66
"Eric Mertens <[email protected]>",

c2rust-ast-exporter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-ast-exporter"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = [
55
"The C2Rust Project Developers <[email protected]>",
66
"Eric Mertens <[email protected]>",

c2rust-ast-printer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-ast-printer"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["The Rust Project Developers", "Stephen Crane <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

c2rust-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-macros"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["Stephen Crane <[email protected]>", "The C2Rust Project Developers <[email protected]>"]
55
edition = "2018"
66
description = "Procedural macro support crate for C2Rust"

c2rust-refactor/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-refactor"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = [
55
"The C2Rust Project Developers <[email protected]>",
66
"Stuart Pernsteiner <[email protected]>",
@@ -18,8 +18,8 @@ json = "0.12"
1818
libc = "0.2"
1919
regex = "1.1"
2020
ena = "0.13"
21-
c2rust-ast-builder = { version = "0.14.0", path = "../c2rust-ast-builder" }
22-
c2rust-ast-printer = { version = "0.14.0", path = "../c2rust-ast-printer" }
21+
c2rust-ast-builder = { version = "0.15.0", path = "../c2rust-ast-builder" }
22+
c2rust-ast-printer = { version = "0.15.0", path = "../c2rust-ast-printer" }
2323
indexmap = { version = "1.0.1", features = ["serde-1"] }
2424
cargo = "0.44"
2525
clap = {version = "2.33", features = ["yaml"]}
@@ -28,7 +28,7 @@ log = "0.4"
2828
rlua = "0.17"
2929
slotmap = {version = "0.4", features = ["unstable"]}
3030
derive_more = "0.99"
31-
c2rust-macros = { version = "0.14.0", path = "../c2rust-macros" }
31+
c2rust-macros = { version = "0.15.0", path = "../c2rust-macros" }
3232
flame = { version = "0.2.2", optional = true }
3333
flamer = { version = "0.4", optional = true }
3434

c2rust-transpile/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2rust-transpile"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = [
55
"The C2Rust Project Developers <[email protected]>",
66
"Eric Mertens <[email protected]>",
@@ -21,10 +21,10 @@ serde_derive = "1.0.80"
2121
serde_bytes = "0.11"
2222
serde_bencode = "0.2"
2323
indexmap = { version = "1.0.1", features = ["serde-1"] }
24-
c2rust-ast-builder = { version = "0.14.0", path = "../c2rust-ast-builder" }
24+
c2rust-ast-builder = { version = "0.15.0", path = "../c2rust-ast-builder" }
2525
libc = "0.2"
26-
c2rust-ast-exporter = { version = "0.14.0", path = "../c2rust-ast-exporter" }
27-
c2rust-ast-printer = { version = "0.14.0", path = "../c2rust-ast-printer" }
26+
c2rust-ast-exporter = { version = "0.15.0", path = "../c2rust-ast-exporter" }
27+
c2rust-ast-printer = { version = "0.15.0", path = "../c2rust-ast-printer" }
2828
handlebars = "2.0"
2929
itertools = "0.8"
3030
pathdiff = "0.1.0"

c2rust/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "c2rust"
33
description = "C to Rust translation, refactoring, and cross-checking"
4-
version = "0.14.0"
4+
version = "0.15.0"
55
authors = ["The C2Rust Project Developers <[email protected]>"]
66
license = "BSD-3-Clause"
77
homepage = "https://c2rust.com/"
@@ -21,8 +21,8 @@ log = "0.4"
2121
env_logger = "0.7"
2222
regex = "1.3"
2323
shlex = "0.1"
24-
c2rust-transpile = { version = "0.14.0", path = "../c2rust-transpile" }
25-
c2rust-refactor = { version = "0.14.0", path = "../c2rust-refactor" }
24+
c2rust-transpile = { version = "0.15.0", path = "../c2rust-transpile" }
25+
c2rust-refactor = { version = "0.15.0", path = "../c2rust-refactor" }
2626

2727
[build-dependencies]
2828
rustc_version = "0.2"

0 commit comments

Comments
 (0)