Skip to content

Commit eff4fc2

Browse files
committed
general: release 0.8.14 (#324)
1 parent a20120a commit eff4fc2

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.13] - 2024-03-29
7+
## [0.8.14] - 2024-03-29
88

99
### Added
1010
- 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)
@@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- 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)
2020
- Fix newline handling for Windows in database configuration setup, [#320](https://github.com/rust-db/refinery/pull/320)
2121

22+
## [0.8.14] - 2024-03-29
23+
24+
- YANKED: due to release mismatch, see [#323](https://github.com/rust-db/refinery/issues/323).
25+
2226
## [0.8.12] - 2024-01-22
2327
### Added
2428
- Add Iterable method, [#296](https://github.com/rust-db/refinery/pull/296)

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.13"
3+
version = "0.8.14"
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.13", path = "../refinery_core" }
31-
refinery-macros = { version = "0.8.13", path = "../refinery_macros" }
30+
refinery-core = { version = "0.8.14", path = "../refinery_core" }
31+
refinery-macros = { version = "0.8.14", 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.13"
3+
version = "0.8.14"
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.13", path = "../refinery_core", default-features = false, features = ["toml"] }
26+
refinery-core = { version = "0.8.14", 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.13"
3+
version = "0.8.14"
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.13"
3+
version = "0.8.14"
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.13", path = "../refinery_core" }
18+
refinery-core = { version = "0.8.14", path = "../refinery_core" }
1919
quote = "1"
2020
syn = "2"
2121
proc-macro2 = "1"

0 commit comments

Comments
 (0)