File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
30
0.15.2 (2019-09-14)
5
31
-------------------
6
32
Original file line number Diff line number Diff line change 1
- __version__ = "0.15.2 "
1
+ __version__ = "0.15.3 "
You can’t perform that action at this time.
0 commit comments