diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index cad9059..7d29219 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -31,7 +31,7 @@ jobs: run: | pdm run pytest - name: Update MUSIC_KEY - if: ${{ env.NEW_MUSIC_KEY != "" }} + if: ${{ env.NEW_MUSIC_KEY != '' }} env: GH_TOKEN: ${{ secrets.GH_TOKEN }} run: | diff --git a/mkdocs.yml b/mkdocs.yml index 4ae573d..a3e5d7d 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -145,6 +145,7 @@ nav: - top 排行榜: api/top.md - lyric 歌词: api/lyric.md - user 用户: api/user.md + - exceptions: api/exceptions.md - utils: - qimei 设备标识: api/utils/qimei.md - utils 辅助函数: api/utils/utils.md @@ -152,7 +153,6 @@ nav: - credential 凭据: api/utils/credential.md - sync 同步: api/utils/sync.md - tripledes TripleDES: api/utils/tripledes.md - - exceptions: api/exceptions.md - 贡献指南: contributing.md watch: diff --git a/qqmusic_api/__init__.py b/qqmusic_api/__init__.py index cf0d4af..f372b12 100644 --- a/qqmusic_api/__init__.py +++ b/qqmusic_api/__init__.py @@ -3,7 +3,7 @@ from .utils.network import get_session, set_session from .utils.sync import sync -__version__ = "0.1.7" +__version__ = "0.1.8" __all__ = [ "album",