Release 1.0.1

pull/24/head v1.0.1
Bradlee Speice 2018-08-11 13:13:12 -04:00
parent b5fa1d89ef
commit 0ef35527d9
3 changed files with 23 additions and 4 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@
**/*.rs.bk
Cargo.lock
.vscode
*.pyc
*.pyc
.idea/

18
CHANGELOG.md Normal file
View File

@ -0,0 +1,18 @@
Version 1.0.1 (2018-08-11)
==========================
Bugfixes
--------
- Fixed an issue with "GMT+3" not being handled correctly
Misc
----
- Upgrade `lazy_static` and `rust_decimal` dependencies
Version 1.0.0 (2018-08-03)
==========================
Initial release. Passes all relevant unit tests from Python's
`dateutil` project.

View File

@ -1,6 +1,6 @@
[package]
name = "dtparse"
version = "1.0.0"
version = "1.0.1"
authors = ["Bradlee Speice <bradlee@speice.io>"]
description = "A dateutil-compatible timestamp parser for Rust"
repository = "https://github.com/bspeice/dtparse.git"
@ -18,6 +18,6 @@ name = "dtparse"
[dependencies]
chrono = "0.4"
lazy_static = "1.0"
lazy_static = "1.1"
num-traits = "0.2"
rust_decimal = "0.9"
rust_decimal = "0.10"