From 15fae21f01ae514e2a36d3b6107b61a851588175 Mon Sep 17 00:00:00 2001 From: Jad Chaar Date: Tue, 10 Sep 2019 13:47:12 -0400 Subject: [PATCH] Prep 0.15.1 release --- CHANGELOG.md | 5 +++++ arrow/_version.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5459a17cd..16073aa7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.15.1 + +- [FIX] Fixed a bug that caused Arrow to fail when passed a negative timestamp string. +- [FIX] Fixed a bug that caused Arrow to fail when passed a datetime object with `tzinfo` of type `StaticTzInfo`. + ## 0.15.0 - [NEW] Added support for DDD and DDDD ordinal date tokens. The following functionality is now possible: `arrow.get("1998-045")`, `arrow.get("1998-45", "YYYY-DDD")`, `arrow.get("1998-045", "YYYY-DDDD")`. - [NEW] ISO 8601 basic format for dates and times is now supported (e.g. `YYYYMMDDTHHmmssZ`). diff --git a/arrow/_version.py b/arrow/_version.py index 9da2f8fcc..903e77ce1 100644 --- a/arrow/_version.py +++ b/arrow/_version.py @@ -1 +1 @@ -__version__ = "0.15.0" +__version__ = "0.15.1"