Skip to content

Commit 80ad7a0

Browse files
authored
general: release 0.8.6 (#237)
1 parent 8ba55bb commit 80ad7a0

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.8.6] - 2022-08-15
8+
### Changed
9+
- Update mysql_async to allow 0.30, [#229](https://github.com/rust-db/refinery/pull/229)
10+
711
## [0.8.4] - 2021-01-09
812
### Changed
913
- Allow setting a custom migration table name, [#207](https://github.com/rust-db/refinery/pull/207)

Diff for: refinery/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery"
3-
version = "0.8.4"
3+
version = "0.8.6"
44
rust-version = "1.56"
55
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
66
license = "MIT"
@@ -24,8 +24,8 @@ tiberius = ["refinery-core/tiberius"]
2424
tiberius-config = ["refinery-core/tiberius", "refinery-core/tiberius-config"]
2525

2626
[dependencies]
27-
refinery-core = { version = "0.8.4", path = "../refinery_core" }
28-
refinery-macros = { version = "0.8.4", path = "../refinery_macros" }
27+
refinery-core = { version = "0.8.6", path = "../refinery_core" }
28+
refinery-macros = { version = "0.8.6", path = "../refinery_macros" }
2929

3030
[dev-dependencies]
3131
barrel = { git = "https://github.com/jxs/barrel", features = ["sqlite3", "pg", "mysql", "mssql"] }

Diff for: refinery_cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery_cli"
3-
version = "0.8.4"
3+
version = "0.8.6"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "Provides the CLI for the Refinery crate"
@@ -23,7 +23,7 @@ sqlite-bundled = ["sqlite", "refinery-core/rusqlite-bundled"]
2323
mssql = ["refinery-core/tiberius-config", "tokio"]
2424

2525
[dependencies]
26-
refinery-core = { version = "0.8.4", path = "../refinery_core", default-features = false }
26+
refinery-core = { version = "0.8.6", path = "../refinery_core", default-features = false }
2727
clap = { version = "3", features = ["derive"] }
2828
human-panic = "=1.0.3" # locked as 1.0.2 introduced breaking changes
2929
toml = "0.5"

Diff for: refinery_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery-core"
3-
version = "0.8.4"
3+
version = "0.8.6"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
55
description = "This crate should not be used directly, it is internaly related to Refinery"
66
license = "MIT OR Apache-2.0"

Diff for: refinery_macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery-macros"
3-
version = "0.8.4"
3+
version = "0.8.6"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
55
description = "This crate should not be used directly, it is internaly related to Refinery"
66
license = "MIT OR Apache-2.0"
@@ -12,7 +12,7 @@ edition = "2018"
1212
proc-macro = true
1313

1414
[dependencies]
15-
refinery-core = { version = "0.8.4", path = "../refinery_core" }
15+
refinery-core = { version = "0.8.6", path = "../refinery_core" }
1616
quote = "1"
1717
syn = "1"
1818
proc-macro2 = "1"

0 commit comments

Comments
 (0)