From 2b8aa5a66bfa6ad5f62d5f62dd2ce84a28320ae6 Mon Sep 17 00:00:00 2001 From: Elias Dabbas Date: Sun, 8 Dec 2024 23:21:37 +0000 Subject: [PATCH] Release 0.16.2 --- 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 f861f171..3058ff38 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,12 @@ Change Log - advertools ======================= +0.16.2 (2024-12-08) +------------------- + +* Fixed + - Parse xml.gz sitemap that are not actually zipped, and log the error. + 0.16.1 (2024-08-19) ------------------- diff --git a/advertools/__init__.py b/advertools/__init__.py index 628abe72..3cb933bf 100644 --- a/advertools/__init__.py +++ b/advertools/__init__.py @@ -2,7 +2,7 @@ __author__ = """Elias Dabbas""" __email__ = "eliasdabbas@gmail.com" -__version__ = "0.16.1" +__version__ = "0.16.2" 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 c12dc219..93aa6dab 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.16.1 +current_version = 0.16.2 commit = True tag = True diff --git a/setup.py b/setup.py index d8e16818..59045ecc 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.16.1", + version="0.16.2", zip_safe=False, )