From 884a7bdb15adb3b7cd7821ef370e25261fab141e Mon Sep 17 00:00:00 2001 From: Noa Date: Wed, 11 Jan 2023 00:05:25 -0600 Subject: [PATCH] Bump all crate versions to 0.2.0 --- Cargo.toml | 2 +- ast/Cargo.toml | 9 ++++++--- core/Cargo.toml | 2 +- parser/Cargo.toml | 6 +++--- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 118286f4fd..34dbad3260 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustpython-compiler" -version = "0.1.2" +version = "0.2.0" description = "A usability wrapper around rustpython-parser and rustpython-compiler-core" authors = ["RustPython Team"] edition = "2021" diff --git a/ast/Cargo.toml b/ast/Cargo.toml index 7efefb3ad2..08f29fcc99 100644 --- a/ast/Cargo.toml +++ b/ast/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "rustpython-ast" -version = "0.1.0" +version = "0.2.0" +description = "AST definitions for RustPython" authors = ["RustPython Team"] edition = "2021" +repository = "https://github.com/RustPython/RustPython" +license = "MIT" [features] default = ["constant-optimization", "fold"] @@ -12,5 +15,5 @@ unparse = ["rustpython-common"] [dependencies] num-bigint = "0.4.3" -rustpython-compiler-core = { path = "../core" } -rustpython-common = { path = "../../common", optional = true } +rustpython-compiler-core = { path = "../core", version = "0.2.0" } +rustpython-common = { path = "../../common", version = "0.2.0", optional = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index 65be384f1e..a3dd82bb98 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustpython-compiler-core" description = "RustPython specific bytecode." -version = "0.1.2" +version = "0.2.0" authors = ["RustPython Team"] edition = "2021" repository = "https://github.com/RustPython/RustPython" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index e3ce5a39b4..472e309be1 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustpython-parser" -version = "0.1.2" +version = "0.2.0" description = "Parser for python code." authors = ["RustPython Team"] build = "build.rs" @@ -18,8 +18,8 @@ phf_codegen = "0.10" tiny-keccak = { version = "2", features = ["sha3"] } [dependencies] -rustpython-ast = { path = "../ast" } -rustpython-compiler-core = { path = "../core" } +rustpython-ast = { path = "../ast", version = "0.2.0" } +rustpython-compiler-core = { path = "../core", version = "0.2.0" } ahash = "0.7.6" itertools = "0.10.3"