Bump all crate versions to 0.2.0

This commit is contained in:
Noa 2023-01-11 00:05:25 -06:00
parent 2f33de77c4
commit e3fa5a54ba
5 changed files with 13 additions and 10 deletions

View file

@ -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"]
@ -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 }