Skip to content

Commit

Permalink
Release 0.4.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
ilotoki0804 committed Jun 22, 2024
1 parent 3cd9fdb commit 9bb201e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions WebtoonScraper/miscs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from rich.logging import RichHandler

__url__ = "https://github.com/ilotoki0804/WebtoonScraper"
__version_info__ = (3, 3, 1)
__version__ = str.join(".", map(str, __version_info__))
__version_info__ = (3, 4, 0, "b1")
__version__ = str.join(".", map(str, __version_info__[:3])) + "".join(map(str, __version_info__[3:]))

if TYPE_CHECKING:
from .scrapers import NaverBlogWebtoonId as _NaverBlogWebtoonId
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "WebtoonScraper"
# Do not change this version manually. This will be matched with WebtoonScraper.__version__ automatically.
version = "3.3.1"
version = "3.4.0b1"
description = "Scraping webtoons with ease."
authors = ["ilotoki0804 <ilotoki0804@gmail.com>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 9bb201e

Please sign in to comment.