Skip to content

Commit

Permalink
Prepare a 2.0.1 release fixing various issues
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Oct 2, 2022
1 parent 0d77050 commit b1d030c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ Increasing the minimal supported Rust version will always be coupled at least wi

## Unreleased

## [2.0.1] 2022-10-xx

### Fixed

* Fixed an issue with `diesel_cli` generating incompatible type names for the `generate_missing_sql_type_definitions` feature on PostgreSQL
* Fixed an issue how `diesel_cli` handles sqlite urls while checking if a given database exists
* Fixed an issue with `PgConnection` becoming unusable after hitting a database error in certain situations
* Fixed an issue with diesel generating invalid SQL for certain `INSERT … ON CONFLICT` queries
* Fixed `diesel_derives` generating code that triggers the disabled by default `unused_qualifications` lint

## [2.0.0] 2022-08-29

### Added
Expand Down Expand Up @@ -1957,3 +1967,4 @@ queries or set `PIPES_AS_CONCAT` manually.
[2.0.0 Rc0]: https://github.com/diesel-rs/diesel/compare/v.1.4.0...v2.0.0-rc0
[2.0.0 Rc1]: https://github.com/diesel-rs/diesel/compare/v.2.0.0-rc0...v2.0.0-rc1
[2.0.0]: https://github.com/diesel-rs/diesel/compare/v.1.4.0...v2.0.0
[2.0.1]: https://github.com/diesel-rs/diesel/compare/v.2.0.0...v2.0.1
2 changes: 1 addition & 1 deletion diesel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diesel"
version = "2.0.0"
version = "2.0.1"
license = "MIT OR Apache-2.0"
description = "A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion diesel_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diesel_cli"
version = "2.0.0"
version = "2.0.1"
license = "MIT OR Apache-2.0"
description = "Provides the CLI for the Diesel crate"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion diesel_derives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diesel_derives"
version = "2.0.0"
version = "2.0.1"
license = "MIT OR Apache-2.0"
description = "You should not use this crate directly, it is internal to Diesel."
documentation = "https://diesel.rs/guides/"
Expand Down

0 comments on commit b1d030c

Please sign in to comment.