diff --git a/CHANGELOG.md b/CHANGELOG.md index f4e6f85c1f37..7793b0adaa3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -90,6 +90,23 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ [2-0-migration]: FIXME write a migration guide +## [1.4.4] - 2020-03-22 + +### Fixed + +* Update several dependencies +* Fixed a bug with printing embeded migrations + +## [1.4.3] - 2019-10-11 + +### Fixed + +* Updated several dependencies +* Fixed an issue where the postgresql backend exploits implementation defined behaviour +* Fixed issue where rustdoc failed to build the documentation +* `diesel_derives` and `diesel_migrations` are updated to syn 1.0 + + ## [1.4.2] - 2019-03-19 ### Fixed @@ -1696,3 +1713,5 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ [1.4.0]: https://github.com/diesel-rs/diesel/compare/v1.3.0...v1.4.0 [1.4.1]: https://github.com/diesel-rs/diesel/compare/v1.4.0...v1.4.1 [1.4.2]: https://github.com/diesel-rs/diesel/compare/v1.4.1...v1.4.2 +[1.4.3]: https://github.com/diesel-rs/diesel/compare/v1.4.2...v1.4.3 +[1.4.4]: https://github.com/diesel-rs/diesel/compare/v1.4.3...v1.4.4 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 390dcb977ba5..9c14300017cc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ jobs: parameters: name: macOS_sqlite displayName: macOS SQLite - vmImage: macOS-10.13 + vmImage: macOS-10.15 variables: BACKEND: sqlite SQLITE_DATABASE_URL: /tmp/test.db @@ -21,18 +21,19 @@ jobs: parameters: name: macOS_postgres displayName: macOS PostgreSQL - vmImage: macOS-10.13 + vmImage: macOS-10.15 variables: BACKEND: postgres PG_DATABASE_URL: postgres://postgres@localhost/ PG_EXAMPLE_DATABASE_URL: postgres://postgres@localhost/diesel_example setup: - bash: | - brew update && - brew uninstall --ignore-dependencies libpq && - brew install postgres && - brew services start postgres && - sleep 3 && + brew update + brew uninstall --ignore-dependencies libpq + brew install postgres + /usr/local/Cellar/postgresql/12.2/bin/initdb --locale=C -E UTF-8 /usr/local/var/postgres + brew services start postgresql + sleep 3 /usr/local/opt/postgres/bin/createuser -s postgres displayName: Install postgresql @@ -40,7 +41,7 @@ jobs: parameters: name: macOS_mysql displayName: macOS MySQL - vmImage: macOS-10.13 + vmImage: macOS-10.15 variables: BACKEND: mysql MYSQL_DATABASE_URL: mysql://root@localhost/diesel_test diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index 7b08345a8337..b979b6074d8c 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diesel" -version = "1.4.3" +version = "1.4.4" authors = ["Sean Griffin "] license = "MIT OR Apache-2.0" description = "A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL" diff --git a/diesel_compile_tests/Cargo.toml b/diesel_compile_tests/Cargo.toml index 177fbdae3977..63279b5bb38e 100644 --- a/diesel_compile_tests/Cargo.toml +++ b/diesel_compile_tests/Cargo.toml @@ -10,5 +10,5 @@ diesel = { version = "1.4.0", default-features = false, features = ["extras", "s compiletest_rs = "=0.3.22" [replace] -"diesel:1.4.3" = { path = "../diesel" } +"diesel:1.4.4" = { path = "../diesel" } "diesel_derives:1.4.1" = { path = "../diesel_derives" } diff --git a/diesel_migrations/migrations_internals/Cargo.toml b/diesel_migrations/migrations_internals/Cargo.toml index c6ac79a1b4de..afdecbc6affc 100644 --- a/diesel_migrations/migrations_internals/Cargo.toml +++ b/diesel_migrations/migrations_internals/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "migrations_internals" -version = "1.4.0" +version = "1.4.1" authors = ["Sean Griffin "] license = "MIT OR Apache-2.0" description = "Internal implementation of diesels migration mechanism" diff --git a/diesel_migrations/migrations_macros/Cargo.toml b/diesel_migrations/migrations_macros/Cargo.toml index 620c49eee9b9..d53a3c214b55 100644 --- a/diesel_migrations/migrations_macros/Cargo.toml +++ b/diesel_migrations/migrations_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "migrations_macros" -version = "1.4.1" +version = "1.4.2" authors = ["Sean Griffin "] license = "MIT OR Apache-2.0" description = "Codegeneration macros for diesels embedded migrations"