Skip to content

Commit 46b9a04

Browse files
authored
Merge pull request #708 from systemcatch/release-0153
Bump version to 0.15.3 and update CHANGELOG
2 parents 065e964 + 279fefe commit 46b9a04

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
Changelog
22
=========
33

4+
0.15.3 (2019-11-02)
5+
-------------------
6+
7+
- [NEW] ``factory.get()`` can now create arrow objects from a ISO calendar tuple, for example:
8+
9+
.. code-block:: python
10+
11+
>>> arrow.get((2013, 18, 7))
12+
<Arrow [2013-05-05T00:00:00+00:00]>
13+
14+
- [NEW] Added a new token ``x`` to allow parsing of integer timestamps with milliseconds and microseconds.
15+
- [NEW] Formatting now supports escaping of characters using the same syntax as parsing, for example:
16+
17+
.. code-block:: python
18+
19+
>>> arw = arrow.now()
20+
>>> fmt = "YYYY-MM-DD h [h] m"
21+
>>> arw.format(fmt)
22+
'2019-11-02 3 h 32'
23+
24+
- [NEW] Added ``humanize`` week granularity translations for Chinese, Spanish and Vietnamese.
25+
- [CHANGE] Added ``ParserError`` to module exports.
26+
- [FIX] Added support for midnight at end of day. See `#703 <https://github.com/crsmithdev/arrow/issues/703>`_ for details.
27+
- [INTERNAL] Created Travis build for macOS.
28+
- [INTERNAL] Test parsing and formatting against full timezone database.
29+
430
0.15.2 (2019-09-14)
531
-------------------
632

arrow/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.15.2"
1+
__version__ = "0.15.3"

0 commit comments

Comments
 (0)