Skip to content

Commit 9ea8320

Browse files
committed
0.3.0
1 parent d09bce8 commit 9ea8320

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.2.0"
2+
version = "0.3.0"
33
authors = ["RustPython Team"]
44
edition = "2021"
55
rust-version = "1.67.1"
@@ -16,12 +16,12 @@ members = [
1616
]
1717

1818
[workspace.dependencies]
19-
rustpython-parser-vendored = { path = "vendored" }
20-
rustpython-ast = { path = "ast", default-features = false }
21-
rustpython-parser-core = { path = "core", features = [] }
22-
rustpython-literal = { path = "literal" }
23-
rustpython-format = { path = "format" }
24-
rustpython-parser = { path = "parser", default-features = false }
19+
rustpython-parser-vendored = { path = "vendored", version = "0.3.0" }
20+
rustpython-ast = { path = "ast", default-features = false, version = "0.3.0" }
21+
rustpython-parser-core = { path = "core", features = [], version = "0.3.0" }
22+
rustpython-literal = { path = "literal", version = "0.3.0" }
23+
rustpython-format = { path = "format", version = "0.3.0" }
24+
rustpython-parser = { path = "parser", default-features = false, version = "0.3.0" }
2525

2626
ahash = "0.7.6"
2727
anyhow = "1.0.45"

ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-ast"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "AST definitions for RustPython"
55
authors = ["RustPython Team"]
66
edition = "2021"

core/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustpython-parser-core"
33
description = "RustPython parser data types."
4-
version = "0.2.0"
4+
version = "0.3.0"
55
authors = ["RustPython Team"]
66
edition = "2021"
77
repository = "https://github.com/RustPython/Parser/"
@@ -12,7 +12,6 @@ license = "MIT"
1212
rustpython-parser-vendored.workspace = true
1313
serde = { version = "1.0.133", optional = true, default-features = false, features = ["derive"] }
1414
is-macro.workspace = true
15-
memchr.workspace = true
1615

1716
[features]
1817
default = []

format/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustpython-format"
33
edition = "2021"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
description = "Format helpers for RustPython"
66
authors = ["RustPython Team"]
77
repository = "https://github.com/RustPython/Parser/"

literal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-literal"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Common literal handling utilities mostly useful for unparse and repr."
55
authors = ["RustPython Team"]
66
edition = "2021"

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-parser"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Parser for python code."
55
authors = ["RustPython Team"]
66
build = "build.rs"

0 commit comments

Comments
 (0)