Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.9.2] - 2026-06-09
### Added
- Support for `rustls` as a TLS backend for `tokio-postgres` via the new `tokio-postgres-rustls` feature. [#426](https://github.com/rust-db/refinery/pull/426)
### Changed
- Make TLS opt-in for `postgres` and `tokio-postgres` features. The `postgres` and `tokio-postgres` features no longer pull in `native-tls` unconditionally. Use `postgres-tls` and `tokio-postgres-tls` features for TLS support. [#408](https://github.com/rust-db/refinery/pull/408)
- Support `rusqlite` 0.39.x. [#425](https://github.com/rust-db/refinery/pull/425)
- Support `mysql` up to 0.28.x and `mysql_async` up to 0.37.x. [#436](https://github.com/rust-db/refinery/pull/436)
- Update `toml` dependency to 1.1.2. [#430](https://github.com/rust-db/refinery/pull/430)

## [0.9.1] - 2026-04-15
### Changed
- Support `rusqlite` 0.38.x. [#410](https://github.com/rust-db/refinery/pull/410)
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.9.1"
version = "0.9.2"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
license = "MIT"
description = "Powerful SQL migration toolkit for Rust"
Expand Down Expand Up @@ -31,8 +31,8 @@ enums = ["refinery-macros/enums"]
int8-versions = ["refinery-core/int8-versions", "refinery-macros/int8-versions"]

[dependencies]
refinery-core = { version = "0.9.1", path = "../refinery_core", default-features = false }
refinery-macros = { version = "0.9.1", path = "../refinery_macros" }
refinery-core = { version = "0.9.2", path = "../refinery_core", default-features = false }
refinery-macros = { version = "0.9.2", 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.9.1"
version = "0.9.2"
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 @@ -24,7 +24,7 @@ mssql = ["refinery-core/tiberius-config", "tokio"]
int8-versions = ["refinery-core/int8-versions"]

[dependencies]
refinery-core = { version = "0.9.1", path = "../refinery_core", default-features = false, features = ["toml", "config"] }
refinery-core = { version = "0.9.2", path = "../refinery_core", default-features = false, features = ["toml", "config"] }
clap = { version = "4", features = ["derive"] }
human-panic = "2"
toml = "0.8"
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.9.1"
version = "0.9.2"
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.9.1"
version = "0.9.2"
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 @@ -16,7 +16,7 @@ int8-versions = ["refinery-core/int8-versions"]
proc-macro = true

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