From a1e4336f7043807eda8a5ecb15d4115172cc4a7e Mon Sep 17 00:00:00 2001 From: "Jeong, YunWon" <69878+youknowone@users.noreply.github.com> Date: Wed, 30 Aug 2023 00:04:44 +0900 Subject: [PATCH] 0.3.0 (#92) --- Cargo.toml | 14 +++++++------- ast/Cargo.toml | 2 +- core/Cargo.toml | 2 +- format/Cargo.toml | 2 +- literal/Cargo.toml | 2 +- parser/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e0b86de..fbd7efe 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 d3229bc..55cfa83 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 a268328..e4c99f3 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 7a9db25..9519d25 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 4133d97..dfb4a67 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 863a28a..f8bd8d4 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"