Skip to content

Commit

Permalink
release 0.8.15 (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
jxs authored Feb 18, 2025
1 parent a4a858c commit 042124e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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.15] - 2024-02-18

### Added
- Make a query overridable. [#358](https://github.com/rust-db/refinery/pull/358)
- Enable math functions for SQLite. [#335](https://github.com/rust-db/refinery/pull/335)
- Add serde subfeature to tiberius-config. [#334](https://github.com/rust-db/refinery/pull/334)

### Changed
- Update `mysql` version to allow `26`, [#365](https://github.com/rust-db/refinery/pull/365)
- Update `mysql_async` to allow `0.35`, [#359](https://github.com/rust-db/refinery/pull/359)
- Update `rusqlite` to allow `0.33`, [#361](https://github.com/rust-db/refinery/pull/361)
- 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)
- Update overall dependencies. [#340](https://github.com/rust-db/refinery/pull/340)

### Fixed
- Fix misleading CLI arguments descriptions [#336](https://github.com/rust-db/refinery/pull/336)


## [0.8.14] - 2024-04-03

### Added
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.14"
version = "0.8.15"
rust-version = "1.75"
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
license = "MIT"
Expand All @@ -27,8 +27,8 @@ toml = ["refinery-core/toml"]
enums = ["refinery-macros/enums"]

[dependencies]
refinery-core = { version = "0.8.14", path = "../refinery_core" }
refinery-macros = { version = "0.8.14", path = "../refinery_macros" }
refinery-core = { version = "0.8.15", path = "../refinery_core" }
refinery-macros = { version = "0.8.15", 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.14"
version = "0.8.15"
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
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.14", path = "../refinery_core", default-features = false, features = ["toml"] }
refinery-core = { version = "0.8.15", path = "../refinery_core", default-features = false, features = ["toml"] }
clap = { version = "4", features = ["derive"] }
human-panic = "2"
toml = "0.8"
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.14"
version = "0.8.15"
authors = ["Katharina Fey <[email protected]>", "João Oliveira <[email protected]>"]
description = "This crate should not be used directly, it is internally related to Refinery"
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ enums = []
proc-macro = true

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

0 comments on commit 042124e

Please sign in to comment.