🔖 Bump Version to v0.1.12

This commit is contained in:
xtaodada 2023-09-15 23:24:01 +08:00
parent 9f6d35fc60
commit 1bc643437f
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "SIMNet"
version = "0.1.11"
version = "0.1.12"
description = "Modern API wrapper for Genshin Impact & Honkai: Star Rail built on asyncio and pydantic."
authors = ["PaiGramTeam"]
license = "MIT license"

View File

@ -313,7 +313,7 @@ CODE_HOYOLAB_URL = GameRoute(
genshin="https://sg-hk4e-api.hoyolab.com/common/apicdkey/api/webExchangeCdkeyHyl",
hkrpg="https://sg-hkrpg-api.hoyolab.com/common/apicdkey/api/webExchangeCdkeyHyl",
),
chinese=dict(),
chinese={},
)
QRCODE_URL = Route("https://hk4e-sdk.mihoyo.com/hk4e_cn/combo/panda/qrcode")

View File

@ -29,5 +29,5 @@ class Version(NamedTuple):
return version
__version_info__ = Version(major=0, minor=1, micro=11, release_level="beta", serial=0)
__version_info__ = Version(major=0, minor=1, micro=12, release_level="beta", serial=0)
__version__ = str(__version_info__)