From 0ce2ab0421fee4e49b1c5404ee5f3784fab12342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveira?= Date: Wed, 26 Feb 2020 01:18:32 +0000 Subject: [PATCH] update cfg-if to 0.1.10 to fix backtrace bug, release 0.2.1 (#66) --- CHANGELOG.md | 5 +++++ refinery/Cargo.toml | 4 ++-- refinery_migrations/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e30c98b1..34912629 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v0.2.0 (February 2020) + +- **Bugfixes**: + - lock cfg-if to 0.1.10 to fix [cfg-if/33](https://github.com/alexcrichton/cfg-if/issues/33) + ### v0.2.0 (December 2019) - **Features**: diff --git a/refinery/Cargo.toml b/refinery/Cargo.toml index 463e77a2..366f45c5 100644 --- a/refinery/Cargo.toml +++ b/refinery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery" -version = "0.2.0" +version = "0.2.1" authors = ["Katharina Fey ", "João Oliveira "] license = "MIT OR Apache-2.0" description = "Powerful SQL migration toolkit for Rust" @@ -29,7 +29,7 @@ tttokio-postgres = ["tokio", "ttokio-postgres", "tokio-postgres", "mod_migration ttmysql_async = ["tokio", "mysql_async", "tmysql_async", "mod_migrations/mysql"] [dependencies] -refinery-migrations = { version = "0.2.0", path = "../refinery_migrations" } +refinery-migrations = { version = "0.2.2", path = "../refinery_migrations" } refinery-macros= { version = "0.2.0", path = "../refinery_macros" } barrel = "0.5.3" # hack because there's no optional dev-dependencies diff --git a/refinery_migrations/Cargo.toml b/refinery_migrations/Cargo.toml index bd5a8549..902c3850 100644 --- a/refinery_migrations/Cargo.toml +++ b/refinery_migrations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-migrations" -version = "0.2.0" +version = "0.2.2" authors = ["Katharina Fey ", "João Oliveira "] description = "This crate should not be used directly, it is internaly related to Refinery" license = "MIT OR Apache-2.0" @@ -24,7 +24,7 @@ mysql = {version = "16.0", optional = true} chrono = "0.4" walkdir = "2.2" serde = { version = "1.0", features = ["derive"] } -cfg-if = "0.1" +cfg-if = "=0.1.10" thiserror = "1.0" async-trait = "0.1" tokio-postgres = { version = "0.5.0", optional = true }