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..f89a0174 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" diff --git a/refinery_migrations/Cargo.toml b/refinery_migrations/Cargo.toml index bd5a8549..af5c94a4 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.1" 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 }