From 7339fb3055f8d3bde7437ef770a9f4a1fffaf62e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveira?= Date: Thu, 14 Sep 2023 12:12:11 +0100 Subject: [PATCH] general: release 0.8.10 (#287) --- CHANGELOG.md | 4 ++++ refinery/Cargo.toml | 6 +++--- refinery_cli/Cargo.toml | 4 ++-- refinery_core/Cargo.toml | 2 +- refinery_macros/Cargo.toml | 4 ++-- 5 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a797cef..86cbbe2d 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.11] - 2023-09-13 +### Changed +- Improve feature-set, remove non required features from dependencies [#286](https://github.com/rust-db/refinery/pull/286) + ## [0.8.10] - 2023-05-20 ### Changed - Update mysql_async to allow 0.32, [#278](https://github.com/rust-db/refinery/pull/278) diff --git a/refinery/Cargo.toml b/refinery/Cargo.toml index f770902d..a18ecf4c 100644 --- a/refinery/Cargo.toml +++ b/refinery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery" -version = "0.8.10" +version = "0.8.11" 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.10", path = "../refinery_core" } -refinery-macros = { version = "0.8.10", path = "../refinery_macros" } +refinery-core = { version = "0.8.11", path = "../refinery_core" } +refinery-macros = { version = "0.8.11", 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 e75716c3..aad1e522 100644 --- a/refinery_cli/Cargo.toml +++ b/refinery_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery_cli" -version = "0.8.10" +version = "0.8.11" 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.10", path = "../refinery_core", default-features = false } +refinery-core = { version = "0.8.11", path = "../refinery_core", default-features = false } clap = { version = "4", features = ["derive"] } human-panic = "1.1.3" toml = "0.7" diff --git a/refinery_core/Cargo.toml b/refinery_core/Cargo.toml index 75f76e1a..78b77d98 100644 --- a/refinery_core/Cargo.toml +++ b/refinery_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-core" -version = "0.8.10" +version = "0.8.11" 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 5554dc2a..5d8c0978 100644 --- a/refinery_macros/Cargo.toml +++ b/refinery_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refinery-macros" -version = "0.8.10" +version = "0.8.11" 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.10", path = "../refinery_core" } +refinery-core = { version = "0.8.11", path = "../refinery_core" } quote = "1" syn = "2" proc-macro2 = "1"