From 39a23d0b30b67c51e8ccf758327feef6abb7249d Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Thu, 27 Dec 2018 12:28:14 -0500 Subject: [PATCH] publish polonius-engine 0.6.2 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- RELEASES.md | 5 +++++ polonius-engine/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f16fde75b5..3634ffa5655 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -420,7 +420,7 @@ dependencies = [ "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "polonius-engine 0.6.1", + "polonius-engine 0.6.2", "polonius-parser 0.2.0", "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -428,7 +428,7 @@ dependencies = [ [[package]] name = "polonius-engine" -version = "0.6.1" +version = "0.6.2" dependencies = [ "datafrog 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index d39e7d2c870..7a12ec5778a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ failure = "0.1.1" rustc-hash = "1.0.0" structopt = "0.2.8" clap = "2.31.2" -polonius-engine = {version = "0.6.0", path = "polonius-engine" } +polonius-engine = {version = "0.6.2", path = "polonius-engine" } polonius-parser = {version = "0.2.0", path = "polonius-parser" } [workspace] diff --git a/RELEASES.md b/RELEASES.md index f9957e57c61..6351615f7c4 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -12,6 +12,11 @@ # polonius-engine +## v0.6.2 + +- adopt the new datafrog 2.0 dependency (#95) +- some deduplicated dependencies and other improvements (#93, #91, #90) + ## v0.6.1 - adopt the new datafrog 1.0 dependency and optimize with leapfrog joins (#88) diff --git a/polonius-engine/Cargo.toml b/polonius-engine/Cargo.toml index 996b91cf632..340be8253a8 100644 --- a/polonius-engine/Cargo.toml +++ b/polonius-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polonius-engine" -version = "0.6.1" +version = "0.6.2" authors = ["The Rust Project Developers", "Polonius Developers"] description = "Core definition for the Rust borrow checker" license = "Apache-2.0/MIT"