Skip to content

Commit 81a7a8b

Browse files
authored
Merge pull request #484 from sdispater/release-2.1.1
Release 2.1.1
2 parents 9d28c88 + 9ca03a1 commit 81a7a8b

File tree

5 files changed

+70
-48
lines changed

5 files changed

+70
-48
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Change Log
22

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+
319
## [2.1.0] - 2020-03-07
420

521
### Added
@@ -127,7 +143,8 @@
127143

128144

129145

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
131148
[2.1.0]: https://github.com/sdispater/pendulum/releases/tag/2.1.0
132149
[2.0.5]: https://github.com/sdispater/pendulum/releases/tag/2.0.5
133150
[2.0.4]: https://github.com/sdispater/pendulum/releases/tag/2.0.4

build-wheels.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ set -e -x
33

44
cd $(dirname $0)
55

6+
export PATH=/opt/python/cp38-cp38/bin/:$PATH
7+
68
curl -fsS -o get-poetry.py https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
79
/opt/python/cp38-cp38/bin/python get-poetry.py --preview -y
810
rm get-poetry.py
911

10-
for PYBIN in /opt/python/*/bin; do
12+
for PYBIN in /opt/python/cp3*/bin; do
1113
if [ "$PYBIN" == "/opt/python/cp34-cp34m/bin" ]; then
1214
continue
1315
fi

pendulum/__version__.py

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

poetry.lock

Lines changed: 46 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pendulum"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "Python datetimes made easy"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"
@@ -22,7 +22,7 @@ include = ["pendulum/py.typed"]
2222
[tool.poetry.dependencies]
2323
python = "~2.7 || ^3.5"
2424
python-dateutil = "^2.6"
25-
pytzdata = ">=2018.3"
25+
pytzdata = ">=2020.1"
2626

2727
# typing is needed for Python < 3.5
2828
typing = { version = "^3.6", python = "<3.5" }

0 commit comments

Comments
 (0)