From 6fa338f98e0363f9a604a140c4db4b67c379045c Mon Sep 17 00:00:00 2001 From: Elias Dabbas Date: Thu, 27 Jun 2024 15:17:28 +0300 Subject: [PATCH] Release 0.14.3 --- HISTORY.rst | 6 ++++++ advertools/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index e04dc312..1db7812e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -17,6 +17,12 @@ Change Log - advertools * Fixed - Use int64 instead of int for YouTube count columns, contributed by @DanielP77 +0.14.3 (2024-06-27) +------------------- + +* Changed + - Use a different XPath expression for `body_text` while crawling. + 0.14.2 (2024-02-24) ------------------- diff --git a/advertools/__init__.py b/advertools/__init__.py index 4ef5e867..ba3b3ef5 100644 --- a/advertools/__init__.py +++ b/advertools/__init__.py @@ -2,7 +2,7 @@ __author__ = """Elias Dabbas""" __email__ = "eliasdabbas@gmail.com" -__version__ = "0.14.2" +__version__ = "0.14.3" from advertools.ad_create import ad_create from advertools.ad_from_string import ad_from_string diff --git a/setup.cfg b/setup.cfg index 3562fee7..1e5c8ad3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.2 +current_version = 0.14.3 commit = True tag = True diff --git a/setup.py b/setup.py index 70dd7c73..34e102a2 100644 --- a/setup.py +++ b/setup.py @@ -62,6 +62,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/eliasdabbas/advertools", - version="0.14.2", + version="0.14.3", zip_safe=False, )