File tree Expand file tree Collapse file tree 5 files changed +70
-48
lines changed Expand file tree Collapse file tree 5 files changed +70
-48
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 2.1.1] - 2020-07-13
4
+
5
+ ### Fixed
6
+
7
+ - Fixed errors where invalid timezones were matched in ` from_format() ` ([ #374 ] ( https://github.com/sdispater/pendulum/pull/374 ) ).
8
+ - Fixed errors when subtracting negative timedeltas ([ #419 ] ( https://github.com/sdispater/pendulum/pull/419 ) ).
9
+ - Fixed errors in total units computation for durations with years and months ([ #482 ] ( https://github.com/sdispater/pendulum/pull/482 ) ).
10
+ - Fixed an error where the ` fold ` attribute was overridden when using ` replace() ` ([ #414 ] ( https://github.com/sdispater/pendulum/pull/414 ) ).
11
+ - Fixed an error where ` now() ` was not returning the correct result on DST transitions ([ #483 ] ( https://github.com/sdispater/pendulum/pull/483 ) ).
12
+ - Fixed inconsistent typing annotation for the ` parse() ` function ([ #452 ] ( https://github.com/sdispater/pendulum/pull/452 ) ).
13
+
14
+ ### Locales
15
+
16
+ - Added the ` pl ` locale ([ #459 ] ( https://github.com/sdispater/pendulum/pull/459 ) ).
17
+
18
+
3
19
## [ 2.1.0] - 2020-03-07
4
20
5
21
### Added
127
143
128
144
129
145
130
- [ Unreleased ] : https://github.com/sdispater/pendulum/compare/2.1.0...master
146
+ [ Unreleased ] : https://github.com/sdispater/pendulum/compare/2.1.1...master
147
+ [ 2.1.1 ] : https://github.com/sdispater/pendulum/releases/tag/2.1.1
131
148
[ 2.1.0 ] : https://github.com/sdispater/pendulum/releases/tag/2.1.0
132
149
[ 2.0.5 ] : https://github.com/sdispater/pendulum/releases/tag/2.0.5
133
150
[ 2.0.4 ] : https://github.com/sdispater/pendulum/releases/tag/2.0.4
Original file line number Diff line number Diff line change @@ -3,11 +3,13 @@ set -e -x
3
3
4
4
cd $( dirname $0 )
5
5
6
+ export PATH=/opt/python/cp38-cp38/bin/:$PATH
7
+
6
8
curl -fsS -o get-poetry.py https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
7
9
/opt/python/cp38-cp38/bin/python get-poetry.py --preview -y
8
10
rm get-poetry.py
9
11
10
- for PYBIN in /opt/python/* /bin; do
12
+ for PYBIN in /opt/python/cp3 * /bin; do
11
13
if [ " $PYBIN " == " /opt/python/cp34-cp34m/bin" ]; then
12
14
continue
13
15
fi
Original file line number Diff line number Diff line change 1
- __version__ = "2.1.0 "
1
+ __version__ = "2.1.1 "
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pendulum"
3
- version = " 2.1.0 "
3
+ version = " 2.1.1 "
4
4
description = " Python datetimes made easy"
5
5
authors = [
" Sébastien Eustace <[email protected] >" ]
6
6
license = " MIT"
@@ -22,7 +22,7 @@ include = ["pendulum/py.typed"]
22
22
[tool .poetry .dependencies ]
23
23
python = " ~2.7 || ^3.5"
24
24
python-dateutil = " ^2.6"
25
- pytzdata = " >=2018.3 "
25
+ pytzdata = " >=2020.1 "
26
26
27
27
# typing is needed for Python < 3.5
28
28
typing = { version = " ^3.6" , python = " <3.5" }
You can’t perform that action at this time.
0 commit comments