Skip to content

Commit 8816cd4

Browse files
committed
0.3.1
1 parent 4b190eb commit 8816cd4

File tree

16 files changed

+85
-70
lines changed

16 files changed

+85
-70
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustpython"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["RustPython Team"]
55
edition = "2021"
66
rust-version = "1.67.1"
@@ -17,24 +17,24 @@ members = [
1717
]
1818

1919
[workspace.dependencies]
20-
rustpython-compiler-core = { path = "compiler/core", version = "0.3.0" }
21-
rustpython-compiler = { path = "compiler", version = "0.3.0" }
22-
rustpython-codegen = { path = "compiler/codegen", version = "0.3.0" }
23-
rustpython-common = { path = "common", version = "0.3.0" }
24-
rustpython-derive = { path = "derive", version = "0.3.0" }
25-
rustpython-derive-impl = { path = "derive-impl", version = "0.3.0" }
26-
rustpython-jit = { path = "jit", version = "0.3.0" }
27-
rustpython-vm = { path = "vm", default-features = false, version = "0.3.0" }
28-
rustpython-pylib = { path = "pylib", version = "0.3.0" }
29-
rustpython-stdlib = { path = "stdlib", default-features = false, version = "0.3.0" }
30-
rustpython-sre_engine = { path = "vm/sre_engine", version = "0.6.0" }
20+
rustpython-compiler-core = { path = "compiler/core", version = "0.3.1" }
21+
rustpython-compiler = { path = "compiler", version = "0.3.1" }
22+
rustpython-codegen = { path = "compiler/codegen", version = "0.3.1" }
23+
rustpython-common = { path = "common", version = "0.3.1" }
24+
rustpython-derive = { path = "derive", version = "0.3.1" }
25+
rustpython-derive-impl = { path = "derive-impl", version = "0.3.1" }
26+
rustpython-jit = { path = "jit", version = "0.3.1" }
27+
rustpython-vm = { path = "vm", default-features = false, version = "0.3.1" }
28+
rustpython-pylib = { path = "pylib", version = "0.3.1" }
29+
rustpython-stdlib = { path = "stdlib", default-features = false, version = "0.3.1" }
30+
rustpython-sre_engine = { path = "vm/sre_engine", version = "0.3.1" }
3131
rustpython-doc = { git = "https://github.com/RustPython/__doc__", tag = "0.3.0", version = "0.3.0" }
3232

33-
rustpython-literal = { git = "https://github.com/RustPython/Parser.git", rev = "29c4728dbedc7e69cc2560b9b34058bbba9b1303" }
34-
rustpython-parser-core = { git = "https://github.com/RustPython/Parser.git", rev = "29c4728dbedc7e69cc2560b9b34058bbba9b1303" }
35-
rustpython-parser = { git = "https://github.com/RustPython/Parser.git", rev = "29c4728dbedc7e69cc2560b9b34058bbba9b1303" }
36-
rustpython-ast = { git = "https://github.com/RustPython/Parser.git", rev = "29c4728dbedc7e69cc2560b9b34058bbba9b1303" }
37-
rustpython-format = { git = "https://github.com/RustPython/Parser.git", rev = "29c4728dbedc7e69cc2560b9b34058bbba9b1303" }
33+
rustpython-literal = { git = "https://github.com/RustPython/Parser.git", version = "0.3.1", rev = "a95045bc627b2fbf84caf4f010e521846be7b37f" }
34+
rustpython-parser-core = { git = "https://github.com/RustPython/Parser.git", version = "0.3.1", rev = "a95045bc627b2fbf84caf4f010e521846be7b37f" }
35+
rustpython-parser = { git = "https://github.com/RustPython/Parser.git", version = "0.3.1", rev = "a95045bc627b2fbf84caf4f010e521846be7b37f" }
36+
rustpython-ast = { git = "https://github.com/RustPython/Parser.git", version = "0.3.1", rev = "a95045bc627b2fbf84caf4f010e521846be7b37f" }
37+
rustpython-format = { git = "https://github.com/RustPython/Parser.git", version = "0.3.1", rev = "a95045bc627b2fbf84caf4f010e521846be7b37f" }
3838
# rustpython-literal = { path = "../RustPython-parser/literal" }
3939
# rustpython-parser-core = { path = "../RustPython-parser/core" }
4040
# rustpython-parser = { path = "../RustPython-parser/parser" }
@@ -48,15 +48,15 @@ bitflags = "2.4.1"
4848
bstr = "0.2.17"
4949
cfg-if = "1.0"
5050
chrono = "0.4.37"
51-
crossbeam-utils = "0.8.16"
51+
crossbeam-utils = "0.8.19"
5252
flame = "0.2.2"
5353
glob = "0.3"
5454
hex = "0.4.3"
5555
indexmap = { version = "2.2.6", features = ["std"] }
5656
insta = "1.38.0"
5757
itertools = "0.11.0"
5858
is-macro = "0.3.0"
59-
libc = "0.2.151"
59+
libc = "0.2.153"
6060
log = "0.4.16"
6161
nix = { version = "0.27", features = ["fs", "user", "process", "term", "time", "signal", "ioctl", "socket", "sched", "zerocopy", "dir", "hostname", "net", "poll"] }
6262
malachite-bigint = "0.2.0"
@@ -71,15 +71,15 @@ once_cell = "1.19.0"
7171
parking_lot = "0.12.1"
7272
paste = "1.0.7"
7373
rand = "0.8.5"
74-
rustyline = "13"
74+
rustyline = "14.0.0"
7575
serde = { version = "1.0.133", default-features = false }
7676
schannel = "0.1.22"
7777
static_assertions = "1.1"
7878
syn = "1.0.109"
7979
thiserror = "1.0"
8080
thread_local = "1.1.4"
8181
unicode_names2 = "1.1.0"
82-
widestring = "0.5.1"
82+
widestring = "1.1.0"
8383

8484
[features]
8585
default = ["threading", "stdlib", "zlib", "importlib"]

common/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-common"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "General python functions and algorithms for use in RustPython"
55
authors = ["RustPython Team"]
66
edition = "2021"

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.3.0"
3+
version = "0.3.1"
44
description = "A usability wrapper around rustpython-parser and rustpython-compiler-core"
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"

compiler/codegen/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-codegen"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Compiler for python code into bytecode for the rustpython VM."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"

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.3.0"
4+
version = "0.3.1"
55
authors = ["RustPython Team"]
66
edition = "2021"
77
repository = "https://github.com/RustPython/RustPython"

derive-impl/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-derive-impl"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Rust language extensions and macros specific to rustpython."
55
authors = ["RustPython Team"]
66
repository = "https://github.com/RustPython/RustPython"

0 commit comments

Comments
 (0)