Skip to content

Commit a35a6f8

Browse files
authored
Merge pull request #360 from cybozu-go/bump-2.13.0
Bump version to 2.13.0
2 parents 268efdc + 421c9f0 commit a35a6f8

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [2.13.0] - 2026-01-06
9+
10+
### Changed
11+
12+
- Refactor egress NAT server functionality (#352)
13+
- Fix duplicate nftables rules by using UserData as rule identifier and simplify iptables rule addition with AppendUnique (#355)
14+
- Fix originatingonly configuration (#356)
15+
- Support Kubernetes 1.33 (#359)
16+
817
## [2.12.0] - 2025-11-28
918

1019
### Added
@@ -406,7 +415,8 @@ The following `coil-controller` related resources are no longer needed, and you
406415
Coil version 2 is a complete rewrite of Coil version 1.
407416
This is the first release candidate with all the planned features implemented.
408417

409-
[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.12.0...HEAD
418+
[Unreleased]: https://github.com/cybozu-go/coil/compare/v2.13.0...HEAD
419+
[2.13.0]: https://github.com/cybozu-go/coil/compare/v2.12.0...v2.13.0
410420
[2.12.0]: https://github.com/cybozu-go/coil/compare/v2.11.1...v2.12.0
411421
[2.11.1]: https://github.com/cybozu-go/coil/compare/v2.11.0...v2.11.1
412422
[2.11.0]: https://github.com/cybozu-go/coil/compare/v2.10.1...v2.11.0

v2/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
images:
22
- name: coil
3-
newTag: 2.12.0
3+
newTag: 2.13.0
44
newName: ghcr.io/cybozu-go/coil
55

66
resources:

v2/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
)
77

8-
const version = "2.12.0"
8+
const version = "2.13.0"
99

1010
// Version returns the semantic versioning string of Coil.
1111
func Version() string {

0 commit comments

Comments
 (0)