🔖 Bump Version to v0.1.10

This commit is contained in:
xtaodada 2023-09-06 21:24:38 +08:00
parent 6760b3cbc2
commit 4f9e7e7db1
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659
3 changed files with 4 additions and 2 deletions

View File

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

View File

@ -45,3 +45,5 @@ class StarRailUserStats(PartialStarRailUserStats):
"""User stats."""
info: StarRailUserInfo
cur_head_icon_url: str
phone_background_image_url: str

View File

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