Skip to content

Commit f06fb60

Browse files
authored
general: release 0.8.10 (#279)
1 parent 799fce6 commit f06fb60

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 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.10] - 2023-05-20
8+
### Changed
9+
- Update mysql_async to allow 0.32, [#278](https://github.com/rust-db/refinery/pull/278)
10+
711
## [0.8.9] - 2023-05-05
812
### Changed
913
- Add `no-default-features` to tiberius dependency as tiberius features are non additive [#273](https://github.com/rust-db/refinery/pull/273)

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.9"
3+
version = "0.8.10"
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.9", path = "../refinery_core" }
28-
refinery-macros = { version = "0.8.9", path = "../refinery_macros" }
27+
refinery-core = { version = "0.8.10", path = "../refinery_core" }
28+
refinery-macros = { version = "0.8.10", 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.9"
3+
version = "0.8.10"
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.9", path = "../refinery_core", default-features = false }
26+
refinery-core = { version = "0.8.10", path = "../refinery_core", default-features = false }
2727
clap = { version = "4", features = ["derive"] }
2828
human-panic = "1.1.3"
2929
toml = "0.7"

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.9"
3+
version = "0.8.10"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
55
description = "This crate should not be used directly, it is internally 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.9"
3+
version = "0.8.10"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
55
description = "This crate should not be used directly, it is internally 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.9", path = "../refinery_core" }
15+
refinery-core = { version = "0.8.10", path = "../refinery_core" }
1616
quote = "1"
1717
syn = "2"
1818
proc-macro2 = "1"

0 commit comments

Comments
 (0)