Skip to content

Commit 44dd768

Browse files
committed
prepare 0.8.16
1 parent c8b9b6a commit 44dd768

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.8.15] - 2024-02-18
7+
## [0.8.16] - 2024-02-21
8+
### Fixed
9+
- Revert [#346](https://github.com/rust-db/refinery/pull/346) as it breaks Semver, save it for a minor release in the future.
10+
11+
## [0.8.15] - **YANKED** - 2024-02-18
812

913
### Added
1014
- Make a query overridable. [#358](https://github.com/rust-db/refinery/pull/358)

refinery/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery"
3-
version = "0.8.15"
3+
version = "0.8.16"
44
rust-version = "1.75"
55
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
66
license = "MIT"
@@ -27,8 +27,8 @@ toml = ["refinery-core/toml"]
2727
enums = ["refinery-macros/enums"]
2828

2929
[dependencies]
30-
refinery-core = { version = "0.8.15", path = "../refinery_core" }
31-
refinery-macros = { version = "0.8.15", path = "../refinery_macros" }
30+
refinery-core = { version = "0.8.16", path = "../refinery_core" }
31+
refinery-macros = { version = "0.8.16", path = "../refinery_macros" }
3232

3333
[dev-dependencies]
3434
barrel = { git = "https://github.com/jxs/barrel", features = ["sqlite3", "pg", "mysql", "mssql"] }

refinery_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery_cli"
3-
version = "0.8.15"
3+
version = "0.8.16"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "Provides the CLI for the Refinery crate"
@@ -23,7 +23,7 @@ sqlite-bundled = ["sqlite", "refinery-core/rusqlite-bundled"]
2323
mssql = ["refinery-core/tiberius-config", "tokio"]
2424

2525
[dependencies]
26-
refinery-core = { version = "0.8.15", path = "../refinery_core", default-features = false, features = ["toml"] }
26+
refinery-core = { version = "0.8.16", path = "../refinery_core", default-features = false, features = ["toml"] }
2727
clap = { version = "4", features = ["derive"] }
2828
human-panic = "2"
2929
toml = "0.8"

refinery_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery-core"
3-
version = "0.8.15"
3+
version = "0.8.16"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
55
description = "This crate should not be used directly, it is internally related to Refinery"
66
license = "MIT OR Apache-2.0"

refinery_macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refinery-macros"
3-
version = "0.8.15"
3+
version = "0.8.16"
44
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
55
description = "This crate should not be used directly, it is internally related to Refinery"
66
license = "MIT OR Apache-2.0"
@@ -15,7 +15,7 @@ enums = []
1515
proc-macro = true
1616

1717
[dependencies]
18-
refinery-core = { version = "0.8.15", path = "../refinery_core" }
18+
refinery-core = { version = "0.8.16", path = "../refinery_core" }
1919
quote = "1"
2020
syn = "2"
2121
proc-macro2 = "1"

0 commit comments

Comments
 (0)