diff --git a/HISTORY.md b/HISTORY.md index 35fdface4..c430308dc 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,10 @@ ## History +### 0.14.4 + +- [FIX] Fixed a regression in 0.14.3 that prevented a tzinfo argument of type string to be passed to the `get()` function. Functionality such as `arrow.get("2019072807", "YYYYMMDDHH", tzinfo="UTC")` should work as normal again. +- [CHANGE] Moved `backports.functools_lru_cache` dependency from `extra_requires` to `install_requires` for `Python 2.7` installs to fix [#495](https://github.com/crsmithdev/arrow/issues/495). + ### 0.14.3 - [NEW] Added full support for Python 3.8. diff --git a/arrow/_version.py b/arrow/_version.py index 23f00709c..224f1fb74 100644 --- a/arrow/_version.py +++ b/arrow/_version.py @@ -1 +1 @@ -__version__ = "0.14.3" +__version__ = "0.14.4"