Skip to content

Commit

Permalink
Merge pull request arrow-py#651 from jadchaar/version-0.14.7
Browse files Browse the repository at this point in the history
Tweaked when ArrowParseWarning is called and incremented version to 0.14.7
  • Loading branch information
jadchaar committed Sep 4, 2019
2 parents f026294 + b37a0a1 commit d4afda5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.14.7

- [CHANGE] `ArrowParseWarning` will no longer be printed on every call to `arrow.get()` with a datetime string. The purpose of the warning was to start a conversation about the upcoming 0.15.0 changes and we appreciate all the feedback that the community has given us!

## 0.14.6

- [NEW] Added support for `week` granularity in `Arrow.humanize()`. For example, `arrow.utcnow().shift(weeks=-1).humanize(granularity="week")` outputs "a week ago". This change introduced two new untranslated words, `week` and `weeks`, to all locale dictionaries, so locale contributions are welcome!
Expand Down
2 changes: 1 addition & 1 deletion arrow/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.14.6"
__version__ = "0.14.7"
3 changes: 0 additions & 3 deletions arrow/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ class ArrowParseWarning(DeprecationWarning):
"""


warnings.simplefilter("always", ArrowParseWarning)


class ArrowFactory(object):
""" A factory for generating :class:`Arrow <arrow.arrow.Arrow>` objects.
Expand Down

0 comments on commit d4afda5

Please sign in to comment.