Skip to content

Commit

Permalink
0.2.17: Added a serde support for date and time types. (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
lifthrasiir committed Nov 21, 2015
1 parent 7153dc0 commit 2c11364
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Huon Wilson <[email protected]>
Jisoo Park <[email protected]>
John Nagle <[email protected]>
Ken Tossell <[email protected]>
Martin Risell Lilja <[email protected]>
Steve Klabnik <[email protected]>
Tom Gallacher <[email protected]>
klutzy <[email protected]>
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ Chrono obeys the principle of [Semantic Versioning](http://semver.org/).
There were/are numerous minor versions before 1.0 due to the language changes.
Versions with only mechnical changes will be omitted from the following list.

## 0.2.17 (2015-11-22)

### Added

- Naive date and time types and `DateTime` now have a `serde` support.
They serialize as an ISO 8601 / RFC 3339 string just like `Debug`. (#51)

## 0.2.16 (2015-09-06)

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chrono"
version = "0.2.16"
version = "0.2.17"
authors = ["Kang Seonghoon <[email protected]>"]

description = "Date and time library for Rust"
Expand All @@ -15,8 +15,8 @@ license = "MIT/Apache-2.0"
name = "chrono"

[dependencies]
time = "*"
num = "*"
time = "0.1"
num = "0.1"
rustc-serialize = { version = "0.3", optional = true }
serde = { version = "^0.6.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Chrono][doc] 0.2.16
[Chrono][doc] 0.2.17
====================

[![Chrono on Travis CI][travis-image]][travis]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/*!
# Chrono 0.2.16
# Chrono 0.2.17
Date and time handling for Rust. (also known as `rust-chrono`)
It aims to be a feature-complete superset of the [time](https://github.com/rust-lang/time) library.
Expand Down

0 comments on commit 2c11364

Please sign in to comment.