Skip to content

Commit 048bac2

Browse files
committed
Release v0.15.2
This is a minor bugfix release which addresses an issue with encoding of `BigDecimal` objects with PostgreSQL. Diesel would previously incorrectly encode certain numbers resulting in a runtime error.
1 parent 94bdd30 commit 048bac2

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
1010

1111
* Added helper types for inner join and left outer join
1212

13+
## [0.15.2] - 2017-07-28
14+
1315
### Fixed
1416

1517
* `BigDecimal` now properly encodes numbers starting with `10000` on postgres.
@@ -924,3 +926,4 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
924926
[0.14.1]: https://github.com/diesel-rs/diesel/compare/v0.14.0...v0.14.1
925927
[0.15.0]: https://github.com/diesel-rs/diesel/compare/v0.14.1...v0.15.0
926928
[0.15.1]: https://github.com/diesel-rs/diesel/compare/v0.15.0...v0.15.1
929+
[0.15.2]: https://github.com/diesel-rs/diesel/compare/v0.15.1...v0.15.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ members = [
2020
]
2121

2222
[replace]
23-
"diesel:0.15.1" = { path = "diesel" }
23+
"diesel:0.15.2" = { path = "diesel" }
2424
"diesel_codegen:0.15.0" = { path = "diesel_codegen" }
2525
"diesel_infer_schema:0.15.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.15.1"
3+
version = "0.15.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)