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,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"
@ -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"