Skip to content

Commit

Permalink
prepare version 1.7.0 (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Jan 17, 2024
1 parent db76cfe commit 45bc131
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

## 1.7.0
- fix meta property updated vs. original behavior (#121)
- support for LXML version 5.0+ (#127)
- fix image links in Readme

## 1.6.1
- fix for MacOS: pin LXML dependency with @adamh-oai

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ htmldate: find the publication date of web pages
|

.. image:: docs/htmldate-logo.png
.. image:: https://github.com/adbar/htmldate/blob/master/docs/htmldate-logo.png
:alt: Logo as PNG image
:align: center
:width: 60%
Expand All @@ -47,7 +47,7 @@ In a nutshell

|
.. image:: docs/htmldate-demo.gif
.. image:: https://github.com/adbar/htmldate/blob/master/docs/htmldate-demo.gif
:alt: Demo as GIF image
:align: center
:width: 80%
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-2024, Adrien Barbaresi"
__version__ = "1.6.1"
__version__ = "1.7.0"


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):
"dateparser >= 1.1.2", # 1.1.3+ slower
# see tests on Github Actions
"lxml == 4.9.2; platform_system == 'Darwin' and python_version <= '3.8'",
"lxml >= 5.1.0, < 6; platform_system != 'Darwin' or python_version > '3.8'",
"lxml >= 4.9.4, < 6; platform_system != 'Darwin' or python_version > '3.8'",
"python-dateutil >= 2.8.2",
"urllib3 >= 1.26, < 2; python_version < '3.7'",
"urllib3 >= 1.26, < 3; python_version >= '3.7'",
Expand Down

0 comments on commit 45bc131

Please sign in to comment.