diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6a1c50a..ad75d79f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust: [stable, nightly, 1.56.0] + rust: [stable, nightly, 1.65.0] steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2006c2cd..0aeb6897 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.7] - 2022-11-26 +### Changed +- Update mysql to allow 23 [#229](https://github.com/rust-db/refinery/pull/257) + ## [0.8.6] - 2022-08-15 ### Changed - 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 ## [0.8.2] - 2021-01-05 ### Changed -- Update async to allow 22, [#202](https://github.com/rust-db/refinery/pull/202) +- Update mysql to allow 22, [#202](https://github.com/rust-db/refinery/pull/202) ## [0.8.1] - 2021-12-30 ### Changed @@ -35,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.6.0] - 2021-07-10 ### Changed -- Update mysql to 0.21, [#164](https://github.com/rust-db/refinery/pull/164) +- Update mysql to 21, [#164](https://github.com/rust-db/refinery/pull/164) - Update mysql_async to 0.28, [#164](https://github.com/rust-db/refinery/pull/164) - Update rusqlite to 0.25, [#159](https://github.com/rust-db/refinery/pull/159) diff --git a/refinery/Cargo.toml b/refinery/Cargo.toml index 015d3e2e..eba439d9 100644 --- a/refinery/Cargo.toml +++ b/refinery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery" -version = "0.8.6" +version = "0.8.7" 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.6", path = "../refinery_core" } -refinery-macros = { version = "0.8.6", path = "../refinery_macros" } +refinery-core = { version = "0.8.7", path = "../refinery_core" } +refinery-macros = { version = "0.8.7", 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 4264e1f9..ae58a2ee 100644 --- a/refinery_cli/Cargo.toml +++ b/refinery_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery_cli" -version = "0.8.6" +version = "0.8.7" 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.6", path = "../refinery_core", default-features = false } +refinery-core = { version = "0.8.7", path = "../refinery_core", default-features = false } clap = { version = "3", features = ["derive"] } human-panic = "=1.0.3" # locked as 1.0.2 introduced breaking changes toml = "0.5" diff --git a/refinery_core/Cargo.toml b/refinery_core/Cargo.toml index b7cb8d09..eb77ead9 100644 --- a/refinery_core/Cargo.toml +++ b/refinery_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-core" -version = "0.8.6" +version = "0.8.7" authors = ["Katharina Fey ", "João Oliveira "] description = "This crate should not be used directly, it is internaly related to Refinery" license = "MIT OR Apache-2.0" diff --git a/refinery_macros/Cargo.toml b/refinery_macros/Cargo.toml index d8486ce1..7cd19e8f 100644 --- a/refinery_macros/Cargo.toml +++ b/refinery_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-macros" -version = "0.8.6" +version = "0.8.7" authors = ["Katharina Fey ", "João Oliveira "] description = "This crate should not be used directly, it is internaly related to Refinery" license = "MIT OR Apache-2.0" @@ -12,7 +12,7 @@ edition = "2018" proc-macro = true [dependencies] -refinery-core = { version = "0.8.6", path = "../refinery_core" } +refinery-core = { version = "0.8.7", path = "../refinery_core" } quote = "1" syn = "1" proc-macro2 = "1"