Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update cfg-if to 0.1.10 to fix backtrace bug, release 0.2.1 #66

Merged
merged 1 commit into from
Feb 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**:
Expand Down
4 changes: 2 additions & 2 deletions refinery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "refinery"
version = "0.2.0"
version = "0.2.1"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
license = "MIT OR Apache-2.0"
description = "Powerful SQL migration toolkit for Rust"
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions refinery_migrations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "refinery-migrations"
version = "0.2.0"
version = "0.2.2"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
description = "This crate should not be used directly, it is internaly related to Refinery"
license = "MIT OR Apache-2.0"
Expand All @@ -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 }
Expand Down