You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,12 @@
1
1
Changelog
2
2
=========
3
3
4
-
1.0.0 (2021-02-24)
4
+
1.0.1 (2021-02-27)
5
+
------------------
6
+
7
+
- [FIXED] A ``py.typed`` file is now bundled with the Arrow package to conform to PEP 561.
8
+
9
+
1.0.0 (2021-02-26)
5
10
------------------
6
11
7
12
After 8 years we're pleased to announce Arrow v1.0. Thanks to the entire Python community for helping make Arrow the amazing package it is today!
@@ -13,7 +18,8 @@ After 8 years we're pleased to announce Arrow v1.0. Thanks to the entire Python
13
18
- [NEW] Added support for Python 3.9.
14
19
- [NEW] Added a new keyword argument "exact" to ``span``, ``span_range`` and ``interval`` methods. This makes timespans begin at the start time given and not extend beyond the end time given, for example:
15
20
16
-
..code-block:: python
21
+
.. code-block:: python
22
+
17
23
>>> start = Arrow(2021, 2, 5, 12, 30)
18
24
>>> end = Arrow(2021, 2, 5, 17, 15)
19
25
>>>for r in arrow.Arrow.span_range('hour', start, end, exact=True):
@@ -36,12 +42,14 @@ After 8 years we're pleased to announce Arrow v1.0. Thanks to the entire Python
36
42
- [WARN] Arrow will **drop support** for Python 2.7 and 3.5 in the upcoming 1.0.0 release. This is the last major release to support Python 2.7 and Python 3.5.
37
43
- [NEW] Arrow now properly handles imaginary datetimes during DST shifts. For example:
0 commit comments