Skip to content

Commit 5394e40

Browse files
authored
general: release 0.8.12 (#307)
1 parent 17162c1 commit 5394e40

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.12] - 2024-01-22
8+
### Changed
9+
- Add Iterable method, [#296](https://github.com/rust-db/refinery/pull/296)
10+
- Update `mysql` to allow `24`, [#292](https://github.com/rust-db/refinery/pull/292)
11+
- Update `mysql_async` to allow `0.33`, [#292](https://github.com/rust-db/refinery/pull/292)
12+
- Update `rusqlite` to allow `0.30`, [#300](https://github.com/rust-db/refinery/pull/300)
13+
- Replace `lazy_static` with `std::sync::OnceLock` [#301](https://github.com/rust-db/refinery/pull/301)
14+
715
## [0.8.11] - 2023-09-13
816
### Changed
917
- Improve feature-set, remove non required features from dependencies [#286](https://github.com/rust-db/refinery/pull/286)

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.11"
3+
version = "0.8.12"
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.11", path = "../refinery_core" }
28-
refinery-macros = { version = "0.8.11", path = "../refinery_macros" }
27+
refinery-core = { version = "0.8.12", path = "../refinery_core" }
28+
refinery-macros = { version = "0.8.12", path = "../refinery_macros" }
2929

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

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.11"
3+
version = "0.8.12"
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.11", path = "../refinery_core", default-features = false }
26+
refinery-core = { version = "0.8.12", path = "../refinery_core", default-features = false }
2727
clap = { version = "4", features = ["derive"] }
2828
human-panic = "1.1.3"
2929
toml = "0.8"

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.11"
3+
version = "0.8.12"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery-macros"
3-
version = "0.8.11"
3+
version = "0.8.12"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
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.11", path = "../refinery_core" }
15+
refinery-core = { version = "0.8.12", path = "../refinery_core" }
1616
quote = "1"
1717
syn = "2"
1818
proc-macro2 = "1"

0 commit comments

Comments
 (0)