Release v1.2.2

The way we had deprecated `large-tables` and friends was breaking
builds. We still need to improve how this gets deprecated in general,
but in the short term we can fix it by allowing warnings.

Fixes #1634.
This commit is contained in:
Sean Griffin 2018-04-12 13:46:31 -06:00
parent 518d7c1fac
commit f6671c51d6
4 changed files with 15 additions and 5 deletions

View File

@ -4,6 +4,15 @@ All user visible changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/), as described
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
## [1.2.2] - 2018-04-12
### Changed
* Warnings are now allowed inside the crate. The way we had attempted to
deprecate old feature names caused builds to break. We are still not happy
with how this deprecation gets communicated, and will revisit it in the
future.
## [1.2.1] - 2018-04-11
### Changed
@ -1421,3 +1430,4 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
[1.1.2]: https://github.com/diesel-rs/diesel/compare/v1.1.1...v1.1.2
[1.2.0]: https://github.com/diesel-rs/diesel/compare/v1.1.2...v1.2.0
[1.2.1]: https://github.com/diesel-rs/diesel/compare/v1.2.0...v1.2.1
[1.2.2]: https://github.com/diesel-rs/diesel/compare/v1.2.1...v1.2.2

View File

@ -29,7 +29,7 @@ members = [
]
[replace]
"diesel:1.2.1" = { path = "diesel" }
"diesel:1.2.2" = { path = "diesel" }
"diesel_derives:1.2.0" = { path = "diesel_derives" }
"diesel_infer_schema:1.2.0" = { path = "diesel_infer_schema" }
"infer_schema_macros:1.2.0" = { path = "diesel_infer_schema/infer_schema_macros" }

View File

@ -1,6 +1,6 @@
[package]
name = "diesel"
version = "1.2.1"
version = "1.2.2"
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
license = "MIT OR Apache-2.0"
description = "A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL"
@ -44,8 +44,8 @@ default = ["with-deprecated", "32-column-tables"]
extras = ["chrono", "serde_json", "uuid", "deprecated-time", "network-address", "numeric", "r2d2"]
unstable = ["diesel_derives/nightly"]
lint = ["clippy"]
large-tables = ["x32-column-tables"]
huge-tables = ["x64-column-tables"]
large-tables = ["32-column-tables"]
huge-tables = ["64-column-tables"]
x32-column-tables = ["32-column-tables"]
32-column-tables = []
x64-column-tables = ["64-column-tables"]

View File

@ -10,5 +10,5 @@ diesel = { version = "1.2.0", default-features = false, features = ["extras", "s
compiletest_rs = "=0.3.6"
[replace]
"diesel:1.2.1" = { path = "../diesel" }
"diesel:1.2.2" = { path = "../diesel" }
"diesel_derives:1.2.0" = { path = "../diesel_derives" }