Skip to content

Commit c7faae9

Browse files
committed
Bump all crate versions to 0.2.0
1 parent c38babe commit c7faae9

File tree

16 files changed

+56
-50
lines changed

16 files changed

+56
-50
lines changed

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# REDOX END
44
[package]
55
name = "rustpython"
6-
version = "0.1.2"
6+
version = "0.2.0"
77
authors = ["RustPython Team"]
88
edition = "2021"
99
description = "A python interpreter written in rust."
@@ -33,11 +33,11 @@ ssl = ["rustpython-stdlib/ssl"]
3333
ssl-vendor = ["rustpython-stdlib/ssl-vendor"]
3434

3535
[dependencies]
36-
rustpython-compiler = { path = "compiler", version = "0.1.1" }
37-
rustpython-parser = { path = "compiler/parser", version = "0.1.1" }
36+
rustpython-compiler = { path = "compiler", version = "0.2.0" }
37+
rustpython-parser = { path = "compiler/parser", version = "0.2.0" }
3838
rustpython-pylib = { path = "pylib", optional = true, default-features = false }
3939
rustpython-stdlib = { path = "stdlib", optional = true, default-features = false }
40-
rustpython-vm = { path = "vm", version = "0.1.1", default-features = false, features = ["compiler"] }
40+
rustpython-vm = { path = "vm", version = "0.2.0", default-features = false, features = ["compiler"] }
4141

4242
cfg-if = "1.0.0"
4343
clap = "2.34"

common/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "rustpython-common"
3-
version = "0.0.0"
3+
version = "0.2.0"
4+
description = "General python functions and algorithms for use in RustPython"
45
authors = ["RustPython Team"]
56
edition = "2021"
7+
repository = "https://github.com/RustPython/RustPython"
8+
license = "MIT"
69

710
[features]
811
threading = ["parking_lot"]

compiler/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-compiler"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "A usability wrapper around rustpython-parser and rustpython-compiler-core"
55
authors = ["RustPython Team"]
66
edition = "2021"

compiler/ast/Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "rustpython-ast"
3-
version = "0.1.0"
3+
version = "0.2.0"
4+
description = "AST definitions for RustPython"
45
authors = ["RustPython Team"]
56
edition = "2021"
7+
repository = "https://github.com/RustPython/RustPython"
8+
license = "MIT"
69

710
[features]
811
default = ["constant-optimization", "fold"]
@@ -12,5 +15,5 @@ unparse = ["rustpython-common"]
1215

1316
[dependencies]
1417
num-bigint = "0.4.3"
15-
rustpython-compiler-core = { path = "../core" }
16-
rustpython-common = { path = "../../common", optional = true }
18+
rustpython-compiler-core = { path = "../core", version = "0.2.0" }
19+
rustpython-common = { path = "../../common", version = "0.2.0", optional = true }

compiler/codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-codegen"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Compiler for python code into bytecode for the rustpython VM."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -9,7 +9,7 @@ edition = "2021"
99

1010
[dependencies]
1111
rustpython-ast = { path = "../ast", features = ["unparse"] }
12-
rustpython-compiler-core = { path = "../core", version = "0.1.1" }
12+
rustpython-compiler-core = { path = "../core", version = "0.2.0" }
1313

1414
ahash = "0.7.6"
1515
bitflags = "1.3.2"

compiler/core/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-compiler-core"
33
description = "RustPython specific bytecode."
4-
version = "0.1.2"
4+
version = "0.2.0"
55
authors = ["RustPython Team"]
66
edition = "2021"
77
repository = "https://github.com/RustPython/RustPython"

compiler/parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-parser"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Parser for python code."
55
authors = ["RustPython Team"]
66
build = "build.rs"
@@ -18,8 +18,8 @@ phf_codegen = "0.10"
1818
tiny-keccak = { version = "2", features = ["sha3"] }
1919

2020
[dependencies]
21-
rustpython-ast = { path = "../ast" }
22-
rustpython-compiler-core = { path = "../core" }
21+
rustpython-ast = { path = "../ast", version = "0.2.0" }
22+
rustpython-compiler-core = { path = "../core", version = "0.2.0" }
2323

2424
ahash = "0.7.6"
2525
itertools = "0.10.3"

derive-impl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "rustpython-derive-impl"
3-
version = "0.0.0"
3+
version = "0.2.0"
44
edition = "2021"
55

66
[dependencies]
7-
rustpython-compiler-core = { path = "../compiler/core", version = "0.1.1" }
7+
rustpython-compiler-core = { path = "../compiler/core", version = "0.2.0" }
88
rustpython-doc = { git = "https://github.com/RustPython/__doc__", branch = "main" }
99

1010
indexmap = "1.8.1"

derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-derive"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Rust language extensions and macros specific to rustpython."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -11,6 +11,6 @@ edition = "2021"
1111
proc-macro = true
1212

1313
[dependencies]
14-
rustpython-compiler = { path = "../compiler", version = "0.1.1" }
14+
rustpython-compiler = { path = "../compiler", version = "0.2.0" }
1515
rustpython-derive-impl = { path = "../derive-impl" }
1616
syn = "1.0.91"

jit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-jit"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Experimental JIT(just in time) compiler for python code."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -10,7 +10,7 @@ edition = "2021"
1010
autotests = false
1111

1212
[dependencies]
13-
rustpython-compiler-core = { path = "../compiler/core", version = "0.1.2" }
13+
rustpython-compiler-core = { path = "../compiler/core", version = "0.2.0" }
1414

1515
cranelift = "0.88.0"
1616
cranelift-jit = "0.88.0"
@@ -20,7 +20,7 @@ num-traits = "0.2"
2020
thiserror = "1.0"
2121

2222
[dev-dependencies]
23-
rustpython-derive = { path = "../derive", version = "0.1.2" }
23+
rustpython-derive = { path = "../derive", version = "0.2.0" }
2424

2525
approx = "0.5.1"
2626

pylib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-pylib"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["RustPython Team"]
55
description = "A subset of the Python standard library for use with RustPython"
66
repository = "https://github.com/RustPython/RustPython"
@@ -12,8 +12,8 @@ include = ["Cargo.toml", "src/**/*.rs", "Lib/", "!Lib/**/test/", "!Lib/**/*.pyc"
1212
freeze-stdlib = []
1313

1414
[dependencies]
15-
rustpython-compiler-core = { version = "0.1.2", path = "../compiler/core" }
16-
rustpython-derive = { version = "0.1.2", path = "../derive" }
15+
rustpython-compiler-core = { version = "0.2.0", path = "../compiler/core" }
16+
rustpython-derive = { version = "0.2.0", path = "../derive" }
1717

1818
[build-dependencies]
1919
glob = "0.3"

stdlib/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-stdlib"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

vm/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-vm"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Rust Python virtual machine."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -23,14 +23,14 @@ codegen = ["rustpython-codegen", "ast"]
2323
parser = ["rustpython-parser", "ast"]
2424

2525
[dependencies]
26-
rustpython-compiler = { path = "../compiler", optional = true, version = "0.1.2" }
27-
rustpython-ast = { path = "../compiler/ast", optional = true, version = "0.1" }
28-
rustpython-parser = { path = "../compiler/parser", optional = true, version = "0.1.2" }
29-
rustpython-codegen = { path = "../compiler/codegen", optional = true, version = "0.1.2" }
30-
rustpython-compiler-core = { path = "../compiler/core", version = "0.1.2" }
26+
rustpython-compiler = { path = "../compiler", optional = true, version = "0.2.0" }
27+
rustpython-ast = { path = "../compiler/ast", optional = true, version = "0.2.0" }
28+
rustpython-parser = { path = "../compiler/parser", optional = true, version = "0.2.0" }
29+
rustpython-codegen = { path = "../compiler/codegen", optional = true, version = "0.2.0" }
30+
rustpython-compiler-core = { path = "../compiler/core", version = "0.2.0" }
3131
rustpython-common = { path = "../common" }
32-
rustpython-derive = { path = "../derive", version = "0.1.2" }
33-
rustpython-jit = { path = "../jit", optional = true, version = "0.1.2" }
32+
rustpython-derive = { path = "../derive", version = "0.2.0" }
33+
rustpython-jit = { path = "../jit", optional = true, version = "0.2.0" }
3434

3535
num-complex = { version = "0.4.0", features = ["serde"] }
3636
num-bigint = { version = "0.4.3", features = ["serde"] }

wapm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust 🐍 😱 🤘"
55
license-file = "LICENSE"
66
readme = "README.md"

wasm/lib/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_wasm"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
authors = ["RustPython Team"]
55
license = "MIT"
66
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to WASM"

0 commit comments

Comments
 (0)