Skip to content

Commit a20120a

Browse files
authored
general: release 0.8.13 (#322)
1 parent 135acc8 commit a20120a

File tree

5 files changed

+26
-9
lines changed

5 files changed

+26
-9
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,26 @@ 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.12] - 2024-01-22
7+
## [0.8.13] - 2024-03-29
8+
9+
### Added
10+
- Add new utility function, `load_sql_migrations` that enables dynamic migration discovery where embedding is not desirable. [#313](https://github.com/rust-db/refinery/pull/313)
11+
- Add an enum `EmbeddedMigration` with all the migrations applied, [#312](https://github.com/rust-db/refinery/pull/312)
12+
813
### Changed
14+
- Make serde, toml deps optional, [#310](https://github.com/rust-db/refinery/pull/310)
15+
- Make `Migration::applied` `pub`, [#321](https://github.com/rust-db/refinery/pull/321)
16+
- Update `rusqlite` to allow `0.31`, [#316](https://github.com/rust-db/refinery/pull/316)
17+
18+
### Fixed
19+
- Fix bug in get_last_applied_migration when refinery's schema history table is not default, [#313](https://github.com/rust-db/refinery/pull/313)
20+
- Fix newline handling for Windows in database configuration setup, [#320](https://github.com/rust-db/refinery/pull/320)
21+
22+
## [0.8.12] - 2024-01-22
23+
### Added
924
- Add Iterable method, [#296](https://github.com/rust-db/refinery/pull/296)
25+
26+
### Changed
1027
- Update `mysql` to allow `24`, [#292](https://github.com/rust-db/refinery/pull/292)
1128
- Update `mysql_async` to allow `0.33`, [#292](https://github.com/rust-db/refinery/pull/292)
1229
- Update `rusqlite` to allow `0.30`, [#300](https://github.com/rust-db/refinery/pull/300)

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.12"
3+
version = "0.8.13"
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.12", path = "../refinery_core" }
31-
refinery-macros = { version = "0.8.12", path = "../refinery_macros" }
30+
refinery-core = { version = "0.8.13", path = "../refinery_core" }
31+
refinery-macros = { version = "0.8.13", 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.12"
3+
version = "0.8.13"
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.12", path = "../refinery_core", default-features = false, features = ["toml"] }
26+
refinery-core = { version = "0.8.13", path = "../refinery_core", default-features = false, features = ["toml"] }
2727
clap = { version = "4", features = ["derive"] }
2828
human-panic = "1.1.3"
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.12"
3+
version = "0.8.13"
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.12"
3+
version = "0.8.13"
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.12", path = "../refinery_core" }
18+
refinery-core = { version = "0.8.13", path = "../refinery_core" }
1919
quote = "1"
2020
syn = "2"
2121
proc-macro2 = "1"

0 commit comments

Comments
 (0)