From a29fb0de1287293d1200d7db4ba7520922b00d20 Mon Sep 17 00:00:00 2001 From: Noah <33094578+coolreader18@users.noreply.github.com> Date: Wed, 25 Sep 2019 11:37:02 -0500 Subject: [PATCH] Bump crate versions --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ef55098..28dc371 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustpython-compiler" -version = "0.1.0" +version = "0.1.1" description = "Compiler for python code into bytecode for the rustpython VM." authors = ["RustPython Team"] repository = "https://github.com/RustPython/RustPython" @@ -9,8 +9,8 @@ edition = "2018" [dependencies] indexmap = "1.0" -rustpython-bytecode = { path = "../bytecode", version = "0.1.0" } -rustpython-parser = { path = "../parser", version = "0.1.0" } +rustpython-bytecode = { path = "../bytecode", version = "0.1.1" } +rustpython-parser = { path = "../parser", version = "0.1.1" } num-complex = { version = "0.2", features = ["serde"] } log = "0.3" arrayvec = "0.4"