Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit 0504936

Browse files
committed
relase:0.4.1
1 parent 8f9fbc8 commit 0504936

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,8 @@ resoup과 비교했을 때 개발 경험은 hxsoup 쪽이 압도적으로 좋았
366366

367367
## Changelog
368368

369+
0.4.1 (2023-01-24): caching 제거, broadcasting 마저 제거.
370+
369371
0.4.0 (2023-01-23): NotEmptySoupTools와 NotEmptySoupedResponse 추가, soup_select와 soup_select_one에 **kwargs 추가, 버그 수정
370372

371373
0.3.0 (2023-01-04): ClientOptions 추가, 코드 및 버그 수정

hxsoup/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
__title__ = "hxsoup"
1414
__description__ = "Various convenient features related to httpx and BeautifulSoup."
15-
__version_info__ = (0, 4, 0)
15+
__version_info__ = (0, 4, 1)
1616
__version__ = str.join(".", map(str, __version_info__))
1717
__author__ = "ilotoki0804"
1818
__author_email__ = "[email protected]"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hxsoup"
3-
version = "0.4.0" # This version will be matched when build.py is run.
3+
version = "0.4.1" # This version will be matched when build.py is run.
44
description = "Various convenient features related to httpx and BeautifulSoup."
55
authors = ["ilotoki0804 <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)