Skip to content

Commit

Permalink
Bump all crate versions to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coolreader18 committed Jan 11, 2023
1 parent c38babe commit c7faae9
Show file tree
Hide file tree
Showing 16 changed files with 56 additions and 50 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Expand Up @@ -3,7 +3,7 @@
# REDOX END
[package]
name = "rustpython"
version = "0.1.2"
version = "0.2.0"
authors = ["RustPython Team"]
edition = "2021"
description = "A python interpreter written in rust."
Expand Down Expand Up @@ -33,11 +33,11 @@ ssl = ["rustpython-stdlib/ssl"]
ssl-vendor = ["rustpython-stdlib/ssl-vendor"]

[dependencies]
rustpython-compiler = { path = "compiler", version = "0.1.1" }
rustpython-parser = { path = "compiler/parser", version = "0.1.1" }
rustpython-compiler = { path = "compiler", version = "0.2.0" }
rustpython-parser = { path = "compiler/parser", version = "0.2.0" }
rustpython-pylib = { path = "pylib", optional = true, default-features = false }
rustpython-stdlib = { path = "stdlib", optional = true, default-features = false }
rustpython-vm = { path = "vm", version = "0.1.1", default-features = false, features = ["compiler"] }
rustpython-vm = { path = "vm", version = "0.2.0", default-features = false, features = ["compiler"] }

cfg-if = "1.0.0"
clap = "2.34"
Expand Down
5 changes: 4 additions & 1 deletion common/Cargo.toml
@@ -1,8 +1,11 @@
[package]
name = "rustpython-common"
version = "0.0.0"
version = "0.2.0"
description = "General python functions and algorithms for use in RustPython"
authors = ["RustPython Team"]
edition = "2021"
repository = "https://github.com/RustPython/RustPython"
license = "MIT"

[features]
threading = ["parking_lot"]
Expand Down
2 changes: 1 addition & 1 deletion compiler/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-compiler"
version = "0.1.2"
version = "0.2.0"
description = "A usability wrapper around rustpython-parser and rustpython-compiler-core"
authors = ["RustPython Team"]
edition = "2021"
Expand Down
9 changes: 6 additions & 3 deletions compiler/ast/Cargo.toml
@@ -1,8 +1,11 @@
[package]
name = "rustpython-ast"
version = "0.1.0"
version = "0.2.0"
description = "AST definitions for RustPython"
authors = ["RustPython Team"]
edition = "2021"
repository = "https://github.com/RustPython/RustPython"
license = "MIT"

[features]
default = ["constant-optimization", "fold"]
Expand All @@ -12,5 +15,5 @@ unparse = ["rustpython-common"]

[dependencies]
num-bigint = "0.4.3"
rustpython-compiler-core = { path = "../core" }
rustpython-common = { path = "../../common", optional = true }
rustpython-compiler-core = { path = "../core", version = "0.2.0" }
rustpython-common = { path = "../../common", version = "0.2.0", optional = true }
4 changes: 2 additions & 2 deletions compiler/codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-codegen"
version = "0.1.2"
version = "0.2.0"
description = "Compiler for python code into bytecode for the rustpython VM."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"
Expand All @@ -9,7 +9,7 @@ edition = "2021"

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

ahash = "0.7.6"
bitflags = "1.3.2"
Expand Down
2 changes: 1 addition & 1 deletion compiler/core/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "rustpython-compiler-core"
description = "RustPython specific bytecode."
version = "0.1.2"
version = "0.2.0"
authors = ["RustPython Team"]
edition = "2021"
repository = "https://github.com/RustPython/RustPython"
Expand Down
6 changes: 3 additions & 3 deletions compiler/parser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-parser"
version = "0.1.2"
version = "0.2.0"
description = "Parser for python code."
authors = ["RustPython Team"]
build = "build.rs"
Expand All @@ -18,8 +18,8 @@ phf_codegen = "0.10"
tiny-keccak = { version = "2", features = ["sha3"] }

[dependencies]
rustpython-ast = { path = "../ast" }
rustpython-compiler-core = { path = "../core" }
rustpython-ast = { path = "../ast", version = "0.2.0" }
rustpython-compiler-core = { path = "../core", version = "0.2.0" }

ahash = "0.7.6"
itertools = "0.10.3"
Expand Down
4 changes: 2 additions & 2 deletions derive-impl/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "rustpython-derive-impl"
version = "0.0.0"
version = "0.2.0"
edition = "2021"

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

indexmap = "1.8.1"
Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-derive"
version = "0.1.2"
version = "0.2.0"
description = "Rust language extensions and macros specific to rustpython."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"
Expand All @@ -11,6 +11,6 @@ edition = "2021"
proc-macro = true

[dependencies]
rustpython-compiler = { path = "../compiler", version = "0.1.1" }
rustpython-compiler = { path = "../compiler", version = "0.2.0" }
rustpython-derive-impl = { path = "../derive-impl" }
syn = "1.0.91"
6 changes: 3 additions & 3 deletions jit/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-jit"
version = "0.1.2"
version = "0.2.0"
description = "Experimental JIT(just in time) compiler for python code."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"
Expand All @@ -10,7 +10,7 @@ edition = "2021"
autotests = false

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

cranelift = "0.88.0"
cranelift-jit = "0.88.0"
Expand All @@ -20,7 +20,7 @@ num-traits = "0.2"
thiserror = "1.0"

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

approx = "0.5.1"

Expand Down
6 changes: 3 additions & 3 deletions pylib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-pylib"
version = "0.1.0"
version = "0.2.0"
authors = ["RustPython Team"]
description = "A subset of the Python standard library for use with RustPython"
repository = "https://github.com/RustPython/RustPython"
Expand All @@ -12,8 +12,8 @@ include = ["Cargo.toml", "src/**/*.rs", "Lib/", "!Lib/**/test/", "!Lib/**/*.pyc"
freeze-stdlib = []

[dependencies]
rustpython-compiler-core = { version = "0.1.2", path = "../compiler/core" }
rustpython-derive = { version = "0.1.2", path = "../derive" }
rustpython-compiler-core = { version = "0.2.0", path = "../compiler/core" }
rustpython-derive = { version = "0.2.0", path = "../derive" }

[build-dependencies]
glob = "0.3"
2 changes: 1 addition & 1 deletion stdlib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-stdlib"
version = "0.1.2"
version = "0.2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
16 changes: 8 additions & 8 deletions vm/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython-vm"
version = "0.1.2"
version = "0.2.0"
description = "Rust Python virtual machine."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"
Expand All @@ -23,14 +23,14 @@ codegen = ["rustpython-codegen", "ast"]
parser = ["rustpython-parser", "ast"]

[dependencies]
rustpython-compiler = { path = "../compiler", optional = true, version = "0.1.2" }
rustpython-ast = { path = "../compiler/ast", optional = true, version = "0.1" }
rustpython-parser = { path = "../compiler/parser", optional = true, version = "0.1.2" }
rustpython-codegen = { path = "../compiler/codegen", optional = true, version = "0.1.2" }
rustpython-compiler-core = { path = "../compiler/core", version = "0.1.2" }
rustpython-compiler = { path = "../compiler", optional = true, version = "0.2.0" }
rustpython-ast = { path = "../compiler/ast", optional = true, version = "0.2.0" }
rustpython-parser = { path = "../compiler/parser", optional = true, version = "0.2.0" }
rustpython-codegen = { path = "../compiler/codegen", optional = true, version = "0.2.0" }
rustpython-compiler-core = { path = "../compiler/core", version = "0.2.0" }
rustpython-common = { path = "../common" }
rustpython-derive = { path = "../derive", version = "0.1.2" }
rustpython-jit = { path = "../jit", optional = true, version = "0.1.2" }
rustpython-derive = { path = "../derive", version = "0.2.0" }
rustpython-jit = { path = "../jit", optional = true, version = "0.2.0" }

num-complex = { version = "0.4.0", features = ["serde"] }
num-bigint = { version = "0.4.3", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion wapm.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython"
version = "0.1.3"
version = "0.2.0"
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust 🐍 😱 🤘"
license-file = "LICENSE"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion wasm/lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustpython_wasm"
version = "0.1.2"
version = "0.2.0"
authors = ["RustPython Team"]
license = "MIT"
description = "A Python-3 (CPython >= 3.5.0) Interpreter written in Rust, compiled to WASM"
Expand Down

0 comments on commit c7faae9

Please sign in to comment.