From 18262a196ec6566647b5511eed0373239ca57799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1o=20Belica?= Date: Thu, 9 May 2024 09:33:47 +0000 Subject: [PATCH] Bump version 3.0.0 -> 3.0.1 --- CHANGELOG.rst | 4 ++++ justext/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6cd8e4d..4a6c882 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,10 @@ Changelog for jusText ===================== +3.0.1 (2024-05-09) +------------------ +- *BUG FIX:* Fix issue with new version of lxml `#48 `_. + 3.0.0 (2021-10-21) ------------------ - *INCOMPATIBLE CHANGE:* Dropped support for Python 3.4 and below. diff --git a/justext/__init__.py b/justext/__init__.py index eaa56fb..4346440 100644 --- a/justext/__init__.py +++ b/justext/__init__.py @@ -12,4 +12,4 @@ from .core import justext -__version__ = "3.0.0" +__version__ = "3.0.1" diff --git a/setup.cfg b/setup.cfg index 435e9f4..e84c273 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.0.1 commit = true tag = false diff --git a/setup.py b/setup.py index 63a92db..2b561b0 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="jusText", - version="3.0.0", + version="3.0.1", description="Heuristic based boilerplate removal tool", long_description=long_description, author="Jan Pomikálek",