Skip to content

Commit 3b68270

Browse files
committed
release 0.8.15
1 parent a4a858c commit 3b68270

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ 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
8+
9+
### Added
10+
- Make a query overridable. [#358](https://github.com/rust-db/refinery/pull/358)
11+
- Enable math functions for SQLite. [#335](https://github.com/rust-db/refinery/pull/335)
12+
- Add serde subfeature to tiberius-config. [#334](https://github.com/rust-db/refinery/pull/334)
13+
14+
### Changed
15+
- Update `mysql` version to allow `26`, [#365](https://github.com/rust-db/refinery/pull/365)
16+
- Update `mysql_async` to allow `0.35`, [#359](https://github.com/rust-db/refinery/pull/359)
17+
- Update `rusqlite` to allow `0.33`, [#361](https://github.com/rust-db/refinery/pull/361)
18+
- Update migrate Transaction and AsyncTransaction execute functions to avoid double iteration when calling migrate with the grouped option active. [#346](https://github.com/rust-db/refinery/pull/346)
19+
- Update overall dependencies. [#340](https://github.com/rust-db/refinery/pull/340)
20+
21+
### Fixed
22+
- Fix misleading CLI arguments descriptions [#336](https://github.com/rust-db/refinery/pull/336)
23+
24+
725
## [0.8.14] - 2024-04-03
826

927
### Added

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.14"
3+
version = "0.8.15"
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.14", path = "../refinery_core" }
31-
refinery-macros = { version = "0.8.14", path = "../refinery_macros" }
30+
refinery-core = { version = "0.8.15", path = "../refinery_core" }
31+
refinery-macros = { version = "0.8.15", 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.14"
3+
version = "0.8.15"
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.14", path = "../refinery_core", default-features = false, features = ["toml"] }
26+
refinery-core = { version = "0.8.15", path = "../refinery_core", default-features = false, features = ["toml"] }
2727
clap = { version = "4", features = ["derive"] }
2828
human-panic = "2"
2929
toml = "0.8"

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.14"
3+
version = "0.8.15"
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.14", path = "../refinery_core" }
18+
refinery-core = { version = "0.8.15", path = "../refinery_core" }
1919
quote = "1"
2020
syn = "2"
2121
proc-macro2 = "1"

0 commit comments

Comments
 (0)