From eff4fc2fac2a743ebdcaf9ad30acec0f88f4c50c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveira?= Date: Wed, 3 Apr 2024 19:54:00 +0100 Subject: [PATCH] general: release 0.8.14 (#324) --- CHANGELOG.md | 6 +++++- refinery/Cargo.toml | 6 +++--- refinery_cli/Cargo.toml | 4 ++-- refinery_core/Cargo.toml | 2 +- refinery_macros/Cargo.toml | 4 ++-- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ad2e76a..5a8feb52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.13] - 2024-03-29 +## [0.8.14] - 2024-03-29 ### Added - Add new utility function, `load_sql_migrations` that enables dynamic migration discovery where embedding is not desirable. [#313](https://github.com/rust-db/refinery/pull/313) @@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix bug in get_last_applied_migration when refinery's schema history table is not default, [#313](https://github.com/rust-db/refinery/pull/313) - Fix newline handling for Windows in database configuration setup, [#320](https://github.com/rust-db/refinery/pull/320) +## [0.8.14] - 2024-03-29 + +- YANKED: due to release mismatch, see [#323](https://github.com/rust-db/refinery/issues/323). + ## [0.8.12] - 2024-01-22 ### Added - Add Iterable method, [#296](https://github.com/rust-db/refinery/pull/296) diff --git a/refinery/Cargo.toml b/refinery/Cargo.toml index 37b275d4..fce329ec 100644 --- a/refinery/Cargo.toml +++ b/refinery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery" -version = "0.8.13" +version = "0.8.14" rust-version = "1.75" authors = ["Katharina Fey ", "João Oliveira "] license = "MIT" @@ -27,8 +27,8 @@ toml = ["refinery-core/toml"] enums = ["refinery-macros/enums"] [dependencies] -refinery-core = { version = "0.8.13", path = "../refinery_core" } -refinery-macros = { version = "0.8.13", path = "../refinery_macros" } +refinery-core = { version = "0.8.14", path = "../refinery_core" } +refinery-macros = { version = "0.8.14", 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 08e14def..ac79a14e 100644 --- a/refinery_cli/Cargo.toml +++ b/refinery_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery_cli" -version = "0.8.13" +version = "0.8.14" 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.13", path = "../refinery_core", default-features = false, features = ["toml"] } +refinery-core = { version = "0.8.14", path = "../refinery_core", default-features = false, features = ["toml"] } 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 f0c6b3ba..f8e2706f 100644 --- a/refinery_core/Cargo.toml +++ b/refinery_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-core" -version = "0.8.13" +version = "0.8.14" 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 0abad275..249ca6dc 100644 --- a/refinery_macros/Cargo.toml +++ b/refinery_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-macros" -version = "0.8.13" +version = "0.8.14" 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" @@ -15,7 +15,7 @@ enums = [] proc-macro = true [dependencies] -refinery-core = { version = "0.8.13", path = "../refinery_core" } +refinery-core = { version = "0.8.14", path = "../refinery_core" } quote = "1" syn = "2" proc-macro2 = "1"