Skip to content

Commit 45bc131

Browse files
authored
prepare version 1.7.0 (#129)
1 parent db76cfe commit 45bc131

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Changelog
22

3+
## 1.7.0
4+
- fix meta property updated vs. original behavior (#121)
5+
- support for LXML version 5.0+ (#127)
6+
- fix image links in Readme
7+
38
## 1.6.1
49
- fix for MacOS: pin LXML dependency with @adamh-oai
510

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ htmldate: find the publication date of web pages
3333
|
3434
3535

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

4848
|
4949
50-
.. image:: docs/htmldate-demo.gif
50+
.. image:: https://github.com/adbar/htmldate/blob/master/docs/htmldate-demo.gif
5151
:alt: Demo as GIF image
5252
:align: center
5353
:width: 80%

htmldate/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__author__ = "Adrien Barbaresi"
88
__license__ = "GNU GPL v3"
99
__copyright__ = "Copyright 2017-2024, Adrien Barbaresi"
10-
__version__ = "1.6.1"
10+
__version__ = "1.7.0"
1111

1212

1313
import logging

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def get_version(package):
120120
"dateparser >= 1.1.2", # 1.1.3+ slower
121121
# see tests on Github Actions
122122
"lxml == 4.9.2; platform_system == 'Darwin' and python_version <= '3.8'",
123-
"lxml >= 5.1.0, < 6; platform_system != 'Darwin' or python_version > '3.8'",
123+
"lxml >= 4.9.4, < 6; platform_system != 'Darwin' or python_version > '3.8'",
124124
"python-dateutil >= 2.8.2",
125125
"urllib3 >= 1.26, < 2; python_version < '3.7'",
126126
"urllib3 >= 1.26, < 3; python_version >= '3.7'",

0 commit comments

Comments
 (0)