Skip to content

Commit 06df9f1

Browse files
committed
chore: bump version to 1.2.4
1 parent a63380d commit 06df9f1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "llm-webextract"
7-
version = "1.2.3"
7+
version = "1.2.4"
88
description = "AI-powered web content extraction with Large Language Models"
99
readme = "README.md"
1010
license = {text = "MIT"}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name="llm-webextract",
29-
version="1.2.3",
29+
version="1.2.4",
3030
author="Himasha Herath",
3131
author_email="himasha626@gmail.com",
3232
description="AI-powered web content extraction with Large Language Models",

tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_quick_extract(mock_extract):
4545
def test_version():
4646
"""Test package version is available."""
4747
assert hasattr(webextract, "__version__")
48-
assert webextract.__version__ == "1.2.3"
48+
assert webextract.__version__ == "1.2.4"
4949

5050

5151
def test_author():

webextract/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""LLM WebExtract - AI-powered web content extraction using LLMs."""
22

3-
__version__ = "1.2.3"
3+
__version__ = "1.2.4"
44
__author__ = "Himasha Herath"
55
__description__ = "AI-powered web content extraction with Large Language Models"
66

0 commit comments

Comments
 (0)