From 0daa567aa52387fd5ff6e527150de120e2f8ac12 Mon Sep 17 00:00:00 2001 From: Juro Oravec Date: Thu, 24 Oct 2024 23:15:01 +0200 Subject: [PATCH 1/2] chore: update changelog --- CHANGES.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 5e6c71f..0ce66ce 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ selectolax Changelog ==================== +Version 0.3.25 +------------- + +Released + +- Feat: Add `parse_fragment()` and `create_tag()` +- Add missing typing for `Node.insert_child()` +- Add `Node.parser` to access the `HTMLParser` to which the node belongs + Version 0.3.24 ------------- From de1bcaee237cf1add35b94905a2f2280fa16c667 Mon Sep 17 00:00:00 2001 From: Juro Oravec Date: Thu, 24 Oct 2024 23:15:24 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.3.24=20=E2=86=92=200.3.?= =?UTF-8?q?25?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- selectolax/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/selectolax/__init__.py b/selectolax/__init__.py index ea4562c..bd87ded 100644 --- a/selectolax/__init__.py +++ b/selectolax/__init__.py @@ -3,7 +3,7 @@ __author__ = """Artem Golubin""" __email__ = 'me@rushter.com' -__version__ = '0.3.24' +__version__ = '0.3.25' from . import parser from . import lexbor diff --git a/setup.cfg b/setup.cfg index ede5e42..aabc499 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.24 +current_version = 0.3.25 commit = True tag = True diff --git a/setup.py b/setup.py index 91b4e8f..037c538 100644 --- a/setup.py +++ b/setup.py @@ -167,7 +167,7 @@ def make_extensions(): setup( name="selectolax", - version='0.3.24', + version='0.3.25', description="Fast HTML5 parser with CSS selectors.", long_description=readme, author="Artem Golubin",