Skip to content

Commit d88167b

Browse files
committed
Bump crate versions
1 parent 51c3f71 commit d88167b

File tree

7 files changed

+38
-37
lines changed

7 files changed

+38
-37
lines changed

Cargo.lock

+21-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["RustPython Team"]
55
edition = "2018"
66
description = "A python interpreter written in rust."
@@ -23,9 +23,9 @@ freeze-stdlib = ["rustpython-vm/freeze-stdlib"]
2323
log = "0.4"
2424
env_logger = "0.6"
2525
clap = "2.33"
26-
rustpython-compiler = {path = "compiler", version = "0.1.0"}
27-
rustpython-parser = {path = "parser", version = "0.1.0"}
28-
rustpython-vm = {path = "vm", version = "0.1.0"}
26+
rustpython-compiler = {path = "compiler", version = "0.1.1"}
27+
rustpython-parser = {path = "parser", version = "0.1.1"}
28+
rustpython-vm = {path = "vm", version = "0.1.1"}
2929
dirs = "2.0"
3030

3131
flame = { version = "0.2", optional = true }

bytecode/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustpython-bytecode"
33
description = "RustPython specific bytecode."
4-
version = "0.1.0"
4+
version = "0.1.1"
55
authors = ["RustPython Team"]
66
edition = "2018"
77
repository = "https://github.com/RustPython/RustPython"

compiler/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-compiler"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Compiler for python code into bytecode for the rustpython VM."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -9,8 +9,8 @@ edition = "2018"
99

1010
[dependencies]
1111
indexmap = "1.0"
12-
rustpython-bytecode = { path = "../bytecode", version = "0.1.0" }
13-
rustpython-parser = { path = "../parser", version = "0.1.0" }
12+
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
13+
rustpython-parser = { path = "../parser", version = "0.1.1" }
1414
num-complex = { version = "0.2", features = ["serde"] }
1515
log = "0.3"
1616
arrayvec = "0.4"

derive/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-derive"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Rust language extensions and macros specific to rustpython."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -17,8 +17,8 @@ default = ["proc-macro-hack"]
1717
syn = { version = "0.15.29", features = ["full"] }
1818
quote = "0.6.11"
1919
proc-macro2 = "0.4.27"
20-
rustpython-compiler = { path = "../compiler", version = "0.1.0" }
21-
rustpython-bytecode = { path = "../bytecode", version = "0.1.0" }
20+
rustpython-compiler = { path = "../compiler", version = "0.1.1" }
21+
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
2222
bincode = "1.1"
2323
proc-macro-hack = { version = "0.5", optional = true }
2424
maplit = "1.0"

parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-parser"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Parser for python code."
55
authors = [ "RustPython Team" ]
66
build = "build.rs"

vm/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython-vm"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Rust Python virtual machine."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"
@@ -32,10 +32,10 @@ num-rational = "0.2.2"
3232
num-iter = "0.1.39"
3333
rand = "0.5"
3434
log = "0.3"
35-
rustpython-derive = {path = "../derive", version = "0.1.0"}
36-
rustpython-parser = {path = "../parser", optional = true, version = "0.1.0"}
37-
rustpython-compiler = {path = "../compiler", optional = true, version = "0.1.0"}
38-
rustpython-bytecode = { path = "../bytecode", version = "0.1.0"}
35+
rustpython-derive = {path = "../derive", version = "0.1.1"}
36+
rustpython-parser = {path = "../parser", optional = true, version = "0.1.1"}
37+
rustpython-compiler = {path = "../compiler", optional = true, version = "0.1.1"}
38+
rustpython-bytecode = { path = "../bytecode", version = "0.1.1"}
3939
serde = { version = "1.0.66", features = ["derive"] }
4040
serde_json = "1.0.26"
4141
byteorder = "1.2.6"

0 commit comments

Comments
 (0)