diff --git a/CHANGES.rst b/CHANGES.rst index 684f4a9..8311464 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,7 +2,7 @@ History ======= -0.6.0 (YYYY-MM-DD) +0.6.0 (2024-04-04) ------------------ * Moved the Git repository to https://github.com/zytedata/html-text. diff --git a/html_text/__init__.py b/html_text/__init__.py index 66cc852..3aa0e80 100644 --- a/html_text/__init__.py +++ b/html_text/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.5.2' +__version__ = '0.6.0' from .html_text import (etree_to_text, extract_text, selector_to_text, parse_html, cleaned_selector, cleaner, diff --git a/setup.cfg b/setup.cfg index a97ea1b..619c81f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.2 +current_version = 0.6.0 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index 9bb7be4..8e4607e 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='html_text', - version='0.5.2', + version='0.6.0', description="Extract text from HTML", long_description=readme + '\n\n' + history, author="Konstantin Lopukhin",