Skip to content

Commit

Permalink
prepare v1.4.3 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed May 3, 2023
1 parent bd354fe commit 3e94498
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

## 1.4.3
- maintenance release: upgrade `urllib3` dependency

## 1.4.2
- support min_date/max_date as datetimes or datetime strings with @kernc (#73)
- add date attributes to HTML extraction with @kernc (#74)
Expand Down
2 changes: 1 addition & 1 deletion htmldate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Adrien Barbaresi"
__license__ = "GNU GPL v3"
__copyright__ = "Copyright 2017-2023, Adrien Barbaresi"
__version__ = "1.4.2"
__version__ = "1.4.3"


import logging
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def get_version(package):
"lxml >= 4.9.2",
"python-dateutil >= 2.8.2",
"urllib3 >= 1.26, < 2; python_version < '3.7'",
"urllib3 >= 2.0.1, < 3; python_version >= '3.7'",
"urllib3 >= 1.26, < 3; python_version >= '3.7'",
],
extras_require=extras,
entry_points={
Expand Down

0 comments on commit 3e94498

Please sign in to comment.