Skip to content

Commit

Permalink
release 0.8.8 (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
jxs committed Apr 28, 2023
1 parent d26628c commit 1f13311
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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.8] - 2023-04-28
### Changed
- Update tiberius to allow 0.12 [#271](https://github.com/rust-db/refinery/pull/271)
- Update non driver dependencies to latest available versions to allow 0.12 [#271](https://github.com/rust-db/refinery/pull/271)

## [0.8.7] - 2022-11-26
### Changed
- Update mysql to allow 23 [#229](https://github.com/rust-db/refinery/pull/257)
Expand Down
6 changes: 3 additions & 3 deletions refinery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "refinery"
version = "0.8.7"
version = "0.8.8"
rust-version = "1.56"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
license = "MIT"
Expand All @@ -24,8 +24,8 @@ tiberius = ["refinery-core/tiberius"]
tiberius-config = ["refinery-core/tiberius", "refinery-core/tiberius-config"]

[dependencies]
refinery-core = { version = "0.8.7", path = "../refinery_core" }
refinery-macros = { version = "0.8.7", path = "../refinery_macros" }
refinery-core = { version = "0.8.8", path = "../refinery_core" }
refinery-macros = { version = "0.8.8", path = "../refinery_macros" }

[dev-dependencies]
barrel = { git = "https://github.com/jxs/barrel", features = ["sqlite3", "pg", "mysql", "mssql"] }
Expand Down
4 changes: 2 additions & 2 deletions refinery_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "refinery_cli"
version = "0.8.7"
version = "0.8.8"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
license = "MIT OR Apache-2.0"
description = "Provides the CLI for the Refinery crate"
Expand All @@ -23,7 +23,7 @@ sqlite-bundled = ["sqlite", "refinery-core/rusqlite-bundled"]
mssql = ["refinery-core/tiberius-config", "tokio"]

[dependencies]
refinery-core = { version = "0.8.7", path = "../refinery_core", default-features = false }
refinery-core = { version = "0.8.8", path = "../refinery_core", default-features = false }
clap = { version = "4", features = ["derive"] }
human-panic = "1.1.3"
toml = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion refinery_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "refinery-core"
version = "0.8.7"
version = "0.8.8"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
description = "This crate should not be used directly, it is internally related to Refinery"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions refinery_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "refinery-macros"
version = "0.8.7"
version = "0.8.8"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
description = "This crate should not be used directly, it is internally related to Refinery"
license = "MIT OR Apache-2.0"
Expand All @@ -12,7 +12,7 @@ edition = "2018"
proc-macro = true

[dependencies]
refinery-core = { version = "0.8.7", path = "../refinery_core" }
refinery-core = { version = "0.8.8", path = "../refinery_core" }
quote = "1"
syn = "2"
proc-macro2 = "1"
Expand Down

0 comments on commit 1f13311

Please sign in to comment.