diff --git a/CHANGELOG.md b/CHANGELOG.md index 86cbbe2d..ec482b65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.12] - 2024-01-22 +### Changed +- Add Iterable method, [#296](https://github.com/rust-db/refinery/pull/296) +- Update `mysql` to allow `24`, [#292](https://github.com/rust-db/refinery/pull/292) +- Update `mysql_async` to allow `0.33`, [#292](https://github.com/rust-db/refinery/pull/292) +- Update `rusqlite` to allow `0.30`, [#300](https://github.com/rust-db/refinery/pull/300) +- Replace `lazy_static` with `std::sync::OnceLock` [#301](https://github.com/rust-db/refinery/pull/301) + ## [0.8.11] - 2023-09-13 ### Changed - Improve feature-set, remove non required features from dependencies [#286](https://github.com/rust-db/refinery/pull/286) diff --git a/refinery/Cargo.toml b/refinery/Cargo.toml index a18ecf4c..cee49a8d 100644 --- a/refinery/Cargo.toml +++ b/refinery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery" -version = "0.8.11" +version = "0.8.12" rust-version = "1.56" authors = ["Katharina Fey ", "João Oliveira "] license = "MIT" @@ -24,8 +24,8 @@ tiberius = ["refinery-core/tiberius"] tiberius-config = ["refinery-core/tiberius", "refinery-core/tiberius-config"] [dependencies] -refinery-core = { version = "0.8.11", path = "../refinery_core" } -refinery-macros = { version = "0.8.11", path = "../refinery_macros" } +refinery-core = { version = "0.8.12", path = "../refinery_core" } +refinery-macros = { version = "0.8.12", path = "../refinery_macros" } [dev-dependencies] barrel = { git = "https://github.com/jxs/barrel", features = ["sqlite3", "pg", "mysql", "mssql"] } diff --git a/refinery_cli/Cargo.toml b/refinery_cli/Cargo.toml index 285a3098..66fabac5 100644 --- a/refinery_cli/Cargo.toml +++ b/refinery_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery_cli" -version = "0.8.11" +version = "0.8.12" authors = ["Katharina Fey ", "João Oliveira "] license = "MIT OR Apache-2.0" description = "Provides the CLI for the Refinery crate" @@ -23,7 +23,7 @@ sqlite-bundled = ["sqlite", "refinery-core/rusqlite-bundled"] mssql = ["refinery-core/tiberius-config", "tokio"] [dependencies] -refinery-core = { version = "0.8.11", path = "../refinery_core", default-features = false } +refinery-core = { version = "0.8.12", path = "../refinery_core", default-features = false } clap = { version = "4", features = ["derive"] } human-panic = "1.1.3" toml = "0.8" diff --git a/refinery_core/Cargo.toml b/refinery_core/Cargo.toml index e32f4325..1e655051 100644 --- a/refinery_core/Cargo.toml +++ b/refinery_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-core" -version = "0.8.11" +version = "0.8.12" authors = ["Katharina Fey ", "João Oliveira "] description = "This crate should not be used directly, it is internally related to Refinery" license = "MIT OR Apache-2.0" diff --git a/refinery_macros/Cargo.toml b/refinery_macros/Cargo.toml index 5d8c0978..647836b8 100644 --- a/refinery_macros/Cargo.toml +++ b/refinery_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-macros" -version = "0.8.11" +version = "0.8.12" authors = ["Katharina Fey ", "João Oliveira "] description = "This crate should not be used directly, it is internally related to Refinery" license = "MIT OR Apache-2.0" @@ -12,7 +12,7 @@ edition = "2018" proc-macro = true [dependencies] -refinery-core = { version = "0.8.11", path = "../refinery_core" } +refinery-core = { version = "0.8.12", path = "../refinery_core" } quote = "1" syn = "2" proc-macro2 = "1"