Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.14.0 #110

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.14.0] - 2024-11-20
### Changed
- Update contour to 1.30.1 (#109)
- Kubernetes: 1.31
- Contour: 1.30
- ExternalDNS: 0.15
- cert-manager: 1.16

## [0.13.0] - 2024-09-11
### Added
- Add support for specifying revisionHistoryLimit for the generated Certificate (#104)
Expand Down Expand Up @@ -284,7 +292,8 @@ The [quay.io/cybozu/contour-plus](https://quay.io/repository/cybozu/contour-plus
- for [ExternalDNS][] v0.5.14
- for [cert-manager][] v0.8.0

[Unreleased]: https://github.com/cybozu-go/contour-plus/compare/v0.13.0...HEAD
[Unreleased]: https://github.com/cybozu-go/contour-plus/compare/v0.14.0...HEAD
[0.14.0]: https://github.com/cybozu-go/contour-plus/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/cybozu-go/contour-plus/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/cybozu-go/contour-plus/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/cybozu-go/contour-plus/compare/v0.10.0...v0.11.1
Expand Down
7 changes: 5 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ Bump version
2. Make a branch to release

```console
$ git neco dev "bump-$VERSION"
$ git checkout main
$ git pull
$ git checkout -b "bump-$VERSION"
```

3. Edit `CHANGELOG.md` for the new version ([example][]).
Expand All @@ -53,7 +55,8 @@ Bump version

```console
$ git commit -a -m "Bump version to $VERSION"
$ git neco review
$ git push -u origin HEAD
$ gh pr create -f
```

6. Merge this branch.
Expand Down