From 9d6ef83f1374215a73dad49b841b8d13ca1bcdd2 Mon Sep 17 00:00:00 2001 From: Daichi Sakaue Date: Wed, 17 Jan 2024 15:29:05 +0900 Subject: [PATCH] Bump version to 3.1.0 (#278) * Bump version to 3.1.0 Signed-off-by: Daichi Sakaue --- CHANGELOG.md | 20 +++++++++++++++++++- version.go | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f715f120..ca1a584d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [3.1.0] - 2024-01-17 + +### Breaking Changes + +#### Migrate image registry + +We migrated the image repository of sabakan to `ghcr.io`. +From sabakan v3.1.0, please use the following image. + +- https://github.com/cybozu-go/sabakan/pkgs/container/sabakan + +The [quay.io/cybozu/sabakan](https://quay.io/repository/cybozu/sabakan) will not be updated in the future. + +### Changed + +- Migrate to ghcr.io (#276) + ## [3.0.0] - 2023-11-16 ### Changed @@ -299,7 +316,8 @@ No changes. Only for updating Docker base image. See [CHANGELOG-0](./CHANGELOG-0.md). -[Unreleased]: https://github.com/cybozu-go/sabakan/compare/v3.0.0...HEAD +[Unreleased]: https://github.com/cybozu-go/sabakan/compare/v3.1.0...HEAD +[3.1.0]: https://github.com/cybozu-go/sabakan/compare/v3.0.0...v3.1.0 [3.0.0]: https://github.com/cybozu-go/sabakan/compare/v2.13.2...v3.0.0 [2.13.2]: https://github.com/cybozu-go/sabakan/compare/v2.13.1...v2.13.2 [2.13.1]: https://github.com/cybozu-go/sabakan/compare/v2.13.0...v2.13.1 diff --git a/version.go b/version.go index b52e0cc8..138555af 100644 --- a/version.go +++ b/version.go @@ -1,7 +1,7 @@ package sabakan // Version is sabakan version -const Version = "3.0.0" +const Version = "3.1.0" // SchemaVersion is the schema version const SchemaVersion = "3"