diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d9be5d..30d16cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.10.0] - 2025-01-10 +### Changed +- Make excludeLabels only affects to the same NetworkPolicyAdmissionRule (#46) + +### Added +- Add excludeLabelExpressions (#48) + ## [0.9.0] - 2024-09-11 ### Changed - Remove tenet-manager-admin ClusterRoleBinding (#41) diff --git a/charts/tenet/Chart.yaml b/charts/tenet/Chart.yaml index 95c61a3..eb7b657 100644 --- a/charts/tenet/Chart.yaml +++ b/charts/tenet/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.9.0 +version: 0.10.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: 0.9.0 +appVersion: 0.10.0 diff --git a/docs/release.md b/docs/release.md index 5bdd2a8..d6376af 100644 --- a/docs/release.md +++ b/docs/release.md @@ -40,20 +40,23 @@ It should look like: 2. Make a branch to release - ```console - $ git neco dev "bump-$VERSION" - ``` + ```console + $ git switch main + $ git pull origin main + $ git switch -c "bump-$VERSION" + ``` -3. Edit `CHANGELOG.md` for the new version ([example][]). -4. Commit the change and push it. +3. Edit `CHANGELOG.md` for the new version ([example_changelog][]). +4. Edit `charts/tenet/Chart.yaml` for the new version ([example_chart][]). +5. Commit the change and push it. ```console $ git commit -a -m "Bump version to $VERSION" - $ git neco review + $ gh pr create --fill --assignee @me ``` -5. Merge this branch. -6. Add a git tag to the main HEAD, then push it. +6. Merge this branch. +7. Add a git tag to the main HEAD, then push it. ```console # Set VERSION again. @@ -74,4 +77,5 @@ GitHub actions will build and push artifacts such as container images and create a new GitHub release. [semver]: https://semver.org/spec/v2.0.0.html -[example]: https://github.com/cybozu-go/etcdpasswd/commit/77d95384ac6c97e7f48281eaf23cb94f68867f79 +[example_changelog]: https://github.com/cybozu-go/etcdpasswd/commit/77d95384ac6c97e7f48281eaf23cb94f68867f79 +[example_chart]: https://github.com/cybozu-go/tenet/pull/44/files