From d660ae5f3446e8fd451ddc448d246b675fe48dcd Mon Sep 17 00:00:00 2001 From: meetwq Date: Mon, 26 Feb 2024 23:31:49 +0800 Subject: [PATCH] bump version 0.6.0 --- .github/workflows/update_poetry_lock.yml | 4 ++-- README.md | 6 ++++-- nonebot_plugin_memes/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update_poetry_lock.yml b/.github/workflows/update_poetry_lock.yml index e01fa16..17fd1e0 100644 --- a/.github/workflows/update_poetry_lock.yml +++ b/.github/workflows/update_poetry_lock.yml @@ -3,7 +3,7 @@ name: Update poetry.lock on: push: branches: - - "v0.4.x" + - "main" paths: - "pyproject.toml" @@ -28,4 +28,4 @@ jobs: uses: actions-js/push@master with: github_token: ${{ secrets.GITHUB_TOKEN }} - branch: "v0.4.x" + branch: "main" diff --git a/README.md b/README.md index 20258ab..375978c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ _✨ [Nonebot2](https://github.com/nonebot/nonebot2) 表情包制作插件 ✨_

license Python - NoneBot + NoneBot pypi @@ -76,7 +76,9 @@ pip install nonebot_plugin_memes 插件会缓存生成的表情列表图片以避免重复生成,若因为字体没安装好等原因导致生成的图片不正常,需要删除缓存的图片 -> 缓存图片位置: +缓存图片存放在 [nonebot-plugin-localstore](https://github.com/nonebot/plugin-localstore) 插件定义的缓存目录下 + +> 默认缓存目录位置: > > - Windows: `C:\Users\\AppData\Local\nonebot2\Cache\nonebot_plugin_memes` > - Linux: `~/.cache/nonebot2/nonebot_plugin_memes` diff --git a/nonebot_plugin_memes/__init__.py b/nonebot_plugin_memes/__init__.py index 087d66d..e014997 100644 --- a/nonebot_plugin_memes/__init__.py +++ b/nonebot_plugin_memes/__init__.py @@ -58,7 +58,7 @@ extra={ "unique_name": "memes", "author": "meetwq ", - "version": "0.5.1", + "version": "0.6.0", }, ) diff --git a/pyproject.toml b/pyproject.toml index 86a774a..1029d32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nonebot_plugin_memes" -version = "0.5.1" +version = "0.6.0" description = "Nonebot2 plugin for making memes" authors = ["meetwq "] license = "MIT"