From 8d9801f1189fa2310963b1520df60b8745cce728 Mon Sep 17 00:00:00 2001 From: uy_sun Date: Mon, 26 Jun 2023 21:47:46 +0800 Subject: [PATCH] chore(release): v2.6.1 [skip ci] --- CHANGELOG.md | 11 +++++++++-- README.md | 8 ++++---- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0f0ee5e..da3fbd77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/ ## [Unreleased] +## [2.6.1] - 2023-06-26 + ### Added - 将插件配置项传递给 registry +### Changed + +- 商店测试结果中测试时间使用 isoformat + ## [2.6.0] - 2023-06-26 ### Added @@ -23,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/ - 使用新的商店测试结果结构 -## [2.5.0] - 2023-06-14 +## [2.5.0] - 2023-06-23 ### Fixed @@ -259,7 +265,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/ - 最初的版本 -[unreleased]: https://github.com/nonebot/noneflow/compare/v2.6.0...HEAD +[unreleased]: https://github.com/nonebot/noneflow/compare/v2.6.1...HEAD +[2.6.1]: https://github.com/nonebot/noneflow/compare/v2.6.0...v2.6.1 [2.6.0]: https://github.com/nonebot/noneflow/compare/v2.5.0...v2.6.0 [2.5.0]: https://github.com/nonebot/noneflow/compare/v2.4.3...v2.5.0 [2.4.3]: https://github.com/nonebot/noneflow/compare/v2.4.2...v2.4.3 diff --git a/README.md b/README.md index b92ba652..ecb9b9d8 100644 --- a/README.md +++ b/README.md @@ -192,9 +192,9 @@ jobs: poetry install mkdir -p plugin_test/store curl -sSL https://raw.githubusercontent.com/nonebot/registry/results/results.json -o plugin_test/store/results.json - curl -sSL https://raw.githubusercontent.com/nonebot/nonebot2/master/website/static/plugins.json -o plugin_test/store/plugins.json - curl -sSL https://raw.githubusercontent.com/nonebot/nonebot2/master/website/static/bots.json -o plugin_test/bots.json curl -sSL https://raw.githubusercontent.com/nonebot/nonebot2/master/website/static/adapters.json -o plugin_test/adapters.json + curl -sSL https://raw.githubusercontent.com/nonebot/nonebot2/master/website/static/bots.json -o plugin_test/bots.json + curl -sSL https://raw.githubusercontent.com/nonebot/nonebot2/master/website/static/plugins.json -o plugin_test/store/plugins.json - name: Test plugin if: ${{ !contains(fromJSON('["Bot", "Adapter", "Plugin"]'), github.event.client_payload.type) }} run: | @@ -210,9 +210,9 @@ jobs: name: results path: | ${{ github.workspace }}/plugin_test/results.json - ${{ github.workspace }}/plugin_test/plugins.json - ${{ github.workspace }}/plugin_test/bots.json ${{ github.workspace }}/plugin_test/adapters.json + ${{ github.workspace }}/plugin_test/bots.json + ${{ github.workspace }}/plugin_test/plugins.json upload_results: runs-on: ubuntu-latest name: Upload results diff --git a/pyproject.toml b/pyproject.toml index 7c221de8..ac8e8497 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "noneflow" -version = "2.6.0" +version = "2.6.1" description = "Manage publish related issues in nonebot2 project" authors = ["hemengyang "] license = "MIT"