diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index af8fc13e..ee07cfad 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -4,6 +4,8 @@ on: push: paths: - 'poetry.lock' + release: + types: [published] workflow_dispatch: jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index fb075c63..ea7eb400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/ ## [Unreleased] +## [0.5.1] - 2022-01-06 + +### Added + +- 添加针对 json 格式的检查 + +### Fixed + +- 修复标签相关的报错 + +### Change + +- 使用自建的镜像以提升速度 + ## [0.5.0] - 2022-01-04 ### Changed @@ -46,8 +60,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/ - 最初的版本 -[Unreleased]: https://github.com/nonebot/nonebot2-publish-bot/compare/v0.5.0...HEAD +[Unreleased]: https://github.com/nonebot/nonebot2-publish-bot/compare/v0.5.1...HEAD +[0.5.1]: https://github.com/nonebot/nonebot2-publish-bot/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/nonebot/nonebot2-publish-bot/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/nonebot/nonebot2-publish-bot/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/nonebot/nonebot2-publish-bot/compare/v0.2.0...v0.3.0 diff --git a/Dockerfile b/Dockerfile index ab4c6125..d6845422 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/nonebot/nonebot2-publish-bot:sha-cbcf008 +FROM ghcr.io/nonebot/nonebot2-publish-bot:0.5.1 WORKDIR /app diff --git a/pyproject.toml b/pyproject.toml index df5a338a..7b4ca9b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nonebot2-publish-bot" -version = "0.5.0" +version = "0.5.1" description = "Manage publish related issues in nonebot2 project" authors = ["hemengyang "] license = "MIT"