Release v0.5.3

This commit is contained in:
Sean Griffin 2016-03-12 15:44:54 -07:00
parent bb29ac4aca
commit 2344ff8967
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,8 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
## Unreleased
## [0.5.3] 2016-03-12
### Added
* Added helper function `diesel_manage_updated_at('TABLE_NAME')` to postgres
@ -12,6 +14,10 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
that automatically updates the `updated_at` column to the `current_timestamp`
for each affected row in `UPDATE` statements.
### Fixed
* Updated to work on nightly from early March
## [0.5.2] 2016-02-27
* Updated to work on nightly from late February

View File

@ -1,6 +1,6 @@
[package]
name = "diesel"
version = "0.5.0"
version = "0.5.3"
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
license = "MIT OR Apache-2.0"
description = "A safe, extensible ORM and Query builder"