Skip to content

Commit a13bf14

Browse files
committed
Release v0.11.2
This release has no code changes other than bumping the allowed version for pq-sys and mysqlclient-sys. The versions released alongside 0.11 attempted to generate the bindings at compile time. This required a bleeding edge version of clang, and caused too many issues for too many people. The latest versions of those two libraries include pre-generated bindings. If you need to use bindings generated by the old version, you can explicitly depend on that version with `cargo update --precise`
1 parent 481eaef commit a13bf14

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ 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-
## Unreleased
7+
## [0.11.2] - 2017-02-19
8+
9+
### Changed
10+
11+
* `pq-sys` and `mysqlclient-sys` will no longer attempt to generate bindings at
12+
compile time. Generating the bindings required a bleeding edge version of
13+
clang, which caused too many issues.
14+
15+
## [0.11.1] - 2017-02-17
816

917
### Fixed
1018

@@ -703,3 +711,5 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
703711
[0.10.0]: https://github.com/diesel-rs/diesel/compare/v0.9.1...v0.10.0
704712
[0.10.1]: https://github.com/diesel-rs/diesel/compare/v0.10.0...v0.10.1
705713
[0.11.0]: https://github.com/diesel-rs/diesel/compare/v0.10.1...v0.11.0
714+
[0.11.1]: https://github.com/diesel-rs/diesel/compare/v0.11.0...v0.11.1
715+
[0.11.2]: https://github.com/diesel-rs/diesel/compare/v0.11.1...v0.11.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ members = [
1313
]
1414

1515
[replace]
16-
"diesel:0.11.1" = { path = "diesel" }
16+
"diesel:0.11.2" = { path = "diesel" }
1717
"diesel_codegen:0.11.0" = { path = "diesel_codegen" }
1818
"diesel_infer_schema:0.11.0" = { path = "diesel_infer_schema" }

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 = "0.11.1"
3+
version = "0.11.2"
44
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "A safe, extensible ORM and Query builder"

0 commit comments

Comments
 (0)