Bump all crate versions to 0.2.0

This commit is contained in:
Noa 2023-01-11 00:05:25 -06:00
parent 7885344bcf
commit 884a7bdb15
4 changed files with 11 additions and 8 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rustpython-compiler" name = "rustpython-compiler"
version = "0.1.2" version = "0.2.0"
description = "A usability wrapper around rustpython-parser and rustpython-compiler-core" description = "A usability wrapper around rustpython-parser and rustpython-compiler-core"
authors = ["RustPython Team"] authors = ["RustPython Team"]
edition = "2021" edition = "2021"

View file

@ -1,8 +1,11 @@
[package] [package]
name = "rustpython-ast" name = "rustpython-ast"
version = "0.1.0" version = "0.2.0"
description = "AST definitions for RustPython"
authors = ["RustPython Team"] authors = ["RustPython Team"]
edition = "2021" edition = "2021"
repository = "https://github.com/RustPython/RustPython"
license = "MIT"
[features] [features]
default = ["constant-optimization", "fold"] default = ["constant-optimization", "fold"]
@ -12,5 +15,5 @@ unparse = ["rustpython-common"]
[dependencies] [dependencies]
num-bigint = "0.4.3" num-bigint = "0.4.3"
rustpython-compiler-core = { path = "../core" } rustpython-compiler-core = { path = "../core", version = "0.2.0" }
rustpython-common = { path = "../../common", optional = true } rustpython-common = { path = "../../common", version = "0.2.0", optional = true }

View file

@ -1,7 +1,7 @@
[package] [package]
name = "rustpython-compiler-core" name = "rustpython-compiler-core"
description = "RustPython specific bytecode." description = "RustPython specific bytecode."
version = "0.1.2" version = "0.2.0"
authors = ["RustPython Team"] authors = ["RustPython Team"]
edition = "2021" edition = "2021"
repository = "https://github.com/RustPython/RustPython" repository = "https://github.com/RustPython/RustPython"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rustpython-parser" name = "rustpython-parser"
version = "0.1.2" version = "0.2.0"
description = "Parser for python code." description = "Parser for python code."
authors = ["RustPython Team"] authors = ["RustPython Team"]
build = "build.rs" build = "build.rs"
@ -18,8 +18,8 @@ phf_codegen = "0.10"
tiny-keccak = { version = "2", features = ["sha3"] } tiny-keccak = { version = "2", features = ["sha3"] }
[dependencies] [dependencies]
rustpython-ast = { path = "../ast" } rustpython-ast = { path = "../ast", version = "0.2.0" }
rustpython-compiler-core = { path = "../core" } rustpython-compiler-core = { path = "../core", version = "0.2.0" }
ahash = "0.7.6" ahash = "0.7.6"
itertools = "0.10.3" itertools = "0.10.3"