Skip to content

Commit

Permalink
Bump version to 4.0.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stepancheg committed May 2, 2022
1 parent a1c3160 commit 81df880
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions protobuf-codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "protobuf-codegen"
version = "3.0.0-alpha.14"
version = "4.0.0-alpha.0"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -22,8 +22,8 @@ regex = "1.5.5"
once_cell = "1.10.0"
tempfile = "3"

protobuf = { path = "../protobuf", version = "=3.0.0-alpha.14" }
protobuf-parse = { path = "../protobuf-parse", version = "=3.0.0-alpha.14" }
protobuf = { path = "../protobuf", version = "=4.0.0-alpha.0" }
protobuf-parse = { path = "../protobuf-parse", version = "=4.0.0-alpha.0" }

[[bin]]

Expand Down
6 changes: 3 additions & 3 deletions protobuf-json-mapping/Cargo.toml
@@ -1,7 +1,7 @@
[package]

name = "protobuf-json-mapping"
version = "3.0.0-alpha.14"
version = "4.0.0-alpha.0"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -18,8 +18,8 @@ bench = false
[dependencies]
thiserror = "1.0.30"

protobuf = { path = "../protobuf", version = "=3.0.0-alpha.14" }
protobuf-support = { path = "../protobuf-support", version = "=3.0.0-alpha.14" }
protobuf = { path = "../protobuf", version = "=4.0.0-alpha.0" }
protobuf-support = { path = "../protobuf-support", version = "=4.0.0-alpha.0" }

[package.metadata.docs.rs]
all-features = true
6 changes: 3 additions & 3 deletions protobuf-parse/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "protobuf-parse"
version = "3.0.0-alpha.14"
version = "4.0.0-alpha.0"
edition = "2021"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
license = "MIT"
Expand All @@ -22,8 +22,8 @@ anyhow = "1.0.53"
thiserror = "1.0.30"
indexmap = "1.8.0"

protobuf = { path = "../protobuf", version = "=3.0.0-alpha.14" }
protobuf-support = { path = "../protobuf-support", version = "=3.0.0-alpha.14" }
protobuf = { path = "../protobuf", version = "=4.0.0-alpha.0" }
protobuf-support = { path = "../protobuf-support", version = "=4.0.0-alpha.0" }

[lib]
# TODO: figure out what to do with bundled linked_hash_map
Expand Down
2 changes: 1 addition & 1 deletion protobuf-support/Cargo.toml
@@ -1,7 +1,7 @@
[package]

name = "protobuf-support"
version = "3.0.0-alpha.14"
version = "4.0.0-alpha.0"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions protobuf/Cargo.toml
@@ -1,7 +1,7 @@
[package]

name = "protobuf"
version = "3.0.0-alpha.14"
version = "4.0.0-alpha.0"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -24,7 +24,7 @@ bytes = { version = "1.1", optional = true }
thiserror = "1.0.30"
once_cell = "1.9.0"

protobuf-support = { path = "../protobuf-support", version = "=3.0.0-alpha.14" }
protobuf-support = { path = "../protobuf-support", version = "=4.0.0-alpha.0" }

[package.metadata.docs.rs]
all-features = true

0 comments on commit 81df880

Please sign in to comment.