-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from yangby-cryptape/pr/release/v0.9.0
chore: bump version to v0.9.0
- Loading branch information
Showing
16 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "molecule" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
description = "Rust bindings for molecule." | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "molecule-ci-tests" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "types_rust-fuzz" | ||
version = "0.0.0" | ||
version = "0.9.0" | ||
publish = false | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "molecule-tests-loader" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "molecule-tests-utils-c" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "molecule-tests-utils-rust" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "molecule-fuzzer" | ||
version = "0.1.0" | ||
version = "0.9.0" | ||
publish = false | ||
edition = "2021" | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "molecule-codegen" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
description = "Code generator for molecule." | ||
|
@@ -16,7 +16,7 @@ categories = [ | |
license = "MIT" | ||
|
||
[dependencies] | ||
molecule = { version = "=0.8.0", path = "../../bindings/rust", default-features = false } | ||
molecule = { version = "=0.9.0", path = "../../bindings/rust", default-features = false } | ||
property = "0.3.3" | ||
pest = "2.5.7" | ||
pest_derive = "2.5.7" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "moleculec" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
description = "Schema compiler for molecule." | ||
|
@@ -34,7 +34,7 @@ path = "src/compiler-rust-lazy-reader.rs" | |
[dependencies] | ||
clap = { version = "3", features = ["yaml", "cargo"] } | ||
which = "4.3.0" | ||
molecule-codegen = { version = "=0.8.0", path = "../codegen", features = ["compiler-plugin"] } | ||
molecule-codegen = { version = "=0.9.0", path = "../codegen", features = ["compiler-plugin"] } | ||
|
||
[badges] | ||
maintenance = { status = "experimental" } |