Skip to content

Commit bc1a829

Browse files
authored
Prepare 0.9.2 (#437)
* Prepare 0.9.2 - Bump versions to 0.9.2 in all crates - Update inter-crate dependency references - Add 0.9.2 changelog entries for TLS opt-in (#408), tokio-postgres-rustls feature (#426), rusqlite 0.39.x (#425), and toml 1.1.2 (#430) * Bump mysql to 0.28.x and mysql_async to 0.37.x * Apply suggestion from @jxs * Apply suggestion from @jxs
1 parent 46721b3 commit bc1a829

5 files changed

Lines changed: 17 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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.9.2] - 2026-06-09
8+
### Added
9+
- 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)
10+
### Changed
11+
- 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)
12+
- Support `rusqlite` 0.39.x. [#425](https://github.com/rust-db/refinery/pull/425)
13+
- Support `mysql` up to 0.28.x and `mysql_async` up to 0.37.x. [#436](https://github.com/rust-db/refinery/pull/436)
14+
- Update `toml` dependency to 1.1.2. [#430](https://github.com/rust-db/refinery/pull/430)
15+
716
## [0.9.1] - 2026-04-15
817
### Changed
918
- Support `rusqlite` 0.38.x. [#410](https://github.com/rust-db/refinery/pull/410)

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.9.1"
3+
version = "0.9.2"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
55
license = "MIT"
66
description = "Powerful SQL migration toolkit for Rust"
@@ -31,8 +31,8 @@ enums = ["refinery-macros/enums"]
3131
int8-versions = ["refinery-core/int8-versions", "refinery-macros/int8-versions"]
3232

3333
[dependencies]
34-
refinery-core = { version = "0.9.1", path = "../refinery_core", default-features = false }
35-
refinery-macros = { version = "0.9.1", path = "../refinery_macros" }
34+
refinery-core = { version = "0.9.2", path = "../refinery_core", default-features = false }
35+
refinery-macros = { version = "0.9.2", path = "../refinery_macros" }
3636

3737
[dev-dependencies]
3838
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.9.1"
3+
version = "0.9.2"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
55
license = "MIT OR Apache-2.0"
66
description = "Provides the CLI for the Refinery crate"
@@ -24,7 +24,7 @@ mssql = ["refinery-core/tiberius-config", "tokio"]
2424
int8-versions = ["refinery-core/int8-versions"]
2525

2626
[dependencies]
27-
refinery-core = { version = "0.9.1", path = "../refinery_core", default-features = false, features = ["toml", "config"] }
27+
refinery-core = { version = "0.9.2", path = "../refinery_core", default-features = false, features = ["toml", "config"] }
2828
clap = { version = "4", features = ["derive"] }
2929
human-panic = "2"
3030
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.9.1"
3+
version = "0.9.2"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
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.9.1"
3+
version = "0.9.2"
44
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
55
description = "This crate should not be used directly, it is internally related to Refinery"
66
license = "MIT OR Apache-2.0"
@@ -16,7 +16,7 @@ int8-versions = ["refinery-core/int8-versions"]
1616
proc-macro = true
1717

1818
[dependencies]
19-
refinery-core = { version = "0.9.1", path = "../refinery_core" }
19+
refinery-core = { version = "0.9.2", path = "../refinery_core" }
2020
quote = "1"
2121
syn = "2"
2222
proc-macro2 = "1"

0 commit comments

Comments
 (0)