mirror of
https://github.com/bspeice/dtparse
synced 2024-11-12 17:08:09 -05:00
Release 1.0.1
This commit is contained in:
parent
b5fa1d89ef
commit
0ef35527d9
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,4 +3,5 @@
|
||||
**/*.rs.bk
|
||||
Cargo.lock
|
||||
.vscode
|
||||
*.pyc
|
||||
*.pyc
|
||||
.idea/
|
18
CHANGELOG.md
Normal file
18
CHANGELOG.md
Normal 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.
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user