From b83bb867e75d9d08a1253d913e2c8ec6eb86e8ea Mon Sep 17 00:00:00 2001 From: Andrew Elkins Date: Thu, 9 Jul 2015 16:58:23 -0700 Subject: [PATCH] Update version and history file. --- HISTORY.md | 18 ++++++++++++++++++ arrow/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index fb39611bf..545d63858 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,23 @@ ## History +### 0.6.0 + +- [FIX] Added support for Python 3 +- [FIX] Avoid truncating oversized epoch timestamps. Fixes #216. +- [FIX] Fixed month abbreviations for Ukrainian +- [FIX] Fix typo timezone +- [FIX] A couple of dialect fixes and two new languages +- [FIX] Spanish locale: `Miercoles` should have acute accent +- [Fix] Fix Finnish grammar +- [FIX] Fix typo in 'Arrow.floor' docstring +- [FIX] Use read() utility to open README +- [FIX] span_range for week frame +- [NEW] Add minimal support for fractional seconds longer than six digits. +- [NEW] Adding locale support for Marathi (mr) +- [NEW] Add count argument to span method +- [NEW] Improved docs + + ### 0.5.1 - 0.5.4 - [FIX] test the behavior of simplejson instead of calling for_json directly (tonyseek) diff --git a/arrow/__init__.py b/arrow/__init__.py index 1d394b318..8001eb988 100644 --- a/arrow/__init__.py +++ b/arrow/__init__.py @@ -4,5 +4,5 @@ from .factory import ArrowFactory from .api import get, now, utcnow -__version__ = '0.5.4' +__version__ = '0.6.0' VERSION = __version__