diff --git a/Cargo.toml b/Cargo.toml index e0b86de6..fbd7efec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.2.0" +version = "0.3.0" authors = ["RustPython Team"] edition = "2021" rust-version = "1.67.1" @@ -16,12 +16,12 @@ members = [ ] [workspace.dependencies] -rustpython-parser-vendored = { path = "vendored" } -rustpython-ast = { path = "ast", default-features = false } -rustpython-parser-core = { path = "core", features = [] } -rustpython-literal = { path = "literal" } -rustpython-format = { path = "format" } -rustpython-parser = { path = "parser", default-features = false } +rustpython-parser-vendored = { path = "vendored", version = "0.3.0" } +rustpython-ast = { path = "ast", default-features = false, version = "0.3.0" } +rustpython-parser-core = { path = "core", features = [], version = "0.3.0" } +rustpython-literal = { path = "literal", version = "0.3.0" } +rustpython-format = { path = "format", version = "0.3.0" } +rustpython-parser = { path = "parser", default-features = false, version = "0.3.0" } ahash = "0.7.6" anyhow = "1.0.45" diff --git a/ast/Cargo.toml b/ast/Cargo.toml index d3229bcc..55cfa835 100644 --- a/ast/Cargo.toml +++ b/ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustpython-ast" -version = "0.2.0" +version = "0.3.0" description = "AST definitions for RustPython" authors = ["RustPython Team"] edition = "2021" diff --git a/core/Cargo.toml b/core/Cargo.toml index a268328b..e4c99f3e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustpython-parser-core" description = "RustPython parser data types." -version = "0.2.0" +version = "0.3.0" authors = ["RustPython Team"] edition = "2021" repository = "https://github.com/RustPython/Parser/" diff --git a/format/Cargo.toml b/format/Cargo.toml index 7a9db255..9519d259 100644 --- a/format/Cargo.toml +++ b/format/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustpython-format" edition = "2021" -version = "0.2.0" +version = "0.3.0" description = "Format helpers for RustPython" authors = ["RustPython Team"] repository = "https://github.com/RustPython/Parser/" diff --git a/literal/Cargo.toml b/literal/Cargo.toml index 4133d97a..dfb4a67c 100644 --- a/literal/Cargo.toml +++ b/literal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustpython-literal" -version = "0.2.0" +version = "0.3.0" description = "Common literal handling utilities mostly useful for unparse and repr." authors = ["RustPython Team"] edition = "2021" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 863a28a5..f8bd8d4e 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustpython-parser" -version = "0.2.0" +version = "0.3.0" description = "Parser for python code." authors = ["RustPython Team"] build = "build.rs"