Skip to content

Commit

Permalink
Merge pull request #139 from JuroOravec/master
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroOravec authored Oct 24, 2024
2 parents 19ee5e0 + 3864332 commit d631f40
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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
-------------

Expand Down
2 changes: 1 addition & 1 deletion selectolax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = """Artem Golubin"""
__email__ = '[email protected]'
__version__ = '0.3.24'
__version__ = '0.3.25'

from . import parser
from . import lexbor
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.24
current_version = 0.3.25
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d631f40

Please sign in to comment.