Skip to content

Commit 51dd13b

Browse files
committed
Release diesel 1.4.4
This release updates several public dependencies and fixes a minor issue with printing embeded migrations. The following dependencies where updated to newer versions: * `libsqlite3-sys` to allow versions up to 0.17.x * `uuid` to allow versions up to `0.8.x` (with the `uuidv7` feature) * `ipnetwork` to allow versions up to `0.16.x` (with the `network-address` or `extras` feature) Also release migration_macros 1.4.2 and migrations_internals 1.4.1
1 parent 9aa0f74 commit 51dd13b

5 files changed

Lines changed: 16 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,16 @@ All user visible changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/), as described
55
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
66

7+
## [1.4.4] - 2020-03-22
8+
9+
### Fixed
10+
11+
* Update several dependencies
12+
* Fixed a bug with printing embeded migrations
13+
714
## [1.4.3] - 2019-10-11
815

9-
## Fixed
16+
### Fixed
1017

1118
* Updated several dependencies
1219
* Fixed an issue where the postgresql backend exploits implementation defined behaviour
@@ -1618,3 +1625,5 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
16181625
[1.4.0]: https://github.com/diesel-rs/diesel/compare/v1.3.0...v1.4.0
16191626
[1.4.1]: https://github.com/diesel-rs/diesel/compare/v1.4.0...v1.4.1
16201627
[1.4.2]: https://github.com/diesel-rs/diesel/compare/v1.4.1...v1.4.2
1628+
[1.4.3]: https://github.com/diesel-rs/diesel/compare/v1.4.2...v1.4.3
1629+
[1.4.4]: https://github.com/diesel-rs/diesel/compare/v1.4.3...v1.4.4

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ members = [
2626
]
2727

2828
[replace]
29-
"diesel:1.4.3" = { path = "diesel" }
29+
"diesel:1.4.4" = { path = "diesel" }
3030
"diesel_derives:1.4.1" = { path = "diesel_derives" }
3131
"diesel_migrations:1.4.0" = { path = "diesel_migrations" }
32-
"migrations_internals:1.4.0" = { path = "diesel_migrations/migrations_internals" }
33-
"migrations_macros:1.4.1" = { path = "diesel_migrations/migrations_macros" }
32+
"migrations_internals:1.4.1" = { path = "diesel_migrations/migrations_internals" }
33+
"migrations_macros:1.4.2" = { path = "diesel_migrations/migrations_macros" }

diesel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diesel"
3-
version = "1.4.3"
3+
version = "1.4.4"
44
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL"

diesel_migrations/migrations_internals/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "migrations_internals"
3-
version = "1.4.0"
3+
version = "1.4.1"
44
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "Internal implementation of diesels migration mechanism"

diesel_migrations/migrations_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "migrations_macros"
3-
version = "1.4.1"
3+
version = "1.4.2"
44
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "Codegeneration macros for diesels embedded migrations"

0 commit comments

Comments
 (0)