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",