Skip to content

Commit be5c669

Browse files
authored
general: release 0.8.7 (#259)
* general: release 0.8.7
1 parent d1e1ff8 commit be5c669

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
strategy:
4747
matrix:
48-
rust: [stable, nightly, 1.56.0]
48+
rust: [stable, nightly, 1.65.0]
4949
steps:
5050
- uses: actions/checkout@v2
5151
- uses: actions-rs/toolchain@v1

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
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.7] - 2022-11-26
8+
### Changed
9+
- Update mysql to allow 23 [#229](https://github.com/rust-db/refinery/pull/257)
10+
711
## [0.8.6] - 2022-08-15
812
### Changed
913
- Update mysql_async to allow 0.30, [#229](https://github.com/rust-db/refinery/pull/229)
@@ -14,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1418

1519
## [0.8.2] - 2021-01-05
1620
### Changed
17-
- Update async to allow 22, [#202](https://github.com/rust-db/refinery/pull/202)
21+
- Update mysql to allow 22, [#202](https://github.com/rust-db/refinery/pull/202)
1822

1923
## [0.8.1] - 2021-12-30
2024
### Changed
@@ -35,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3539

3640
## [0.6.0] - 2021-07-10
3741
### Changed
38-
- Update mysql to 0.21, [#164](https://github.com/rust-db/refinery/pull/164)
42+
- Update mysql to 21, [#164](https://github.com/rust-db/refinery/pull/164)
3943
- Update mysql_async to 0.28, [#164](https://github.com/rust-db/refinery/pull/164)
4044
- Update rusqlite to 0.25, [#159](https://github.com/rust-db/refinery/pull/159)
4145

refinery/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
rust-version = "1.56"
55
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
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.6", path = "../refinery_core" }
28-
refinery-macros = { version = "0.8.6", path = "../refinery_macros" }
27+
refinery-core = { version = "0.8.7", path = "../refinery_core" }
28+
refinery-macros = { version = "0.8.7", path = "../refinery_macros" }
2929

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

refinery_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery_cli"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
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.6", path = "../refinery_core", default-features = false }
26+
refinery-core = { version = "0.8.7", 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"

refinery_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery-core"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
55
description = "This crate should not be used directly, it is internaly related to Refinery"
66
license = "MIT OR Apache-2.0"

refinery_macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery-macros"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
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.6", path = "../refinery_core" }
15+
refinery-core = { version = "0.8.7", path = "../refinery_core" }
1616
quote = "1"
1717
syn = "1"
1818
proc-macro2 = "1"

0 commit comments

Comments
 (0)