Skip to content

Commit

Permalink
Merge pull request #49 from cybozu-go/bump-0.10.0
Browse files Browse the repository at this point in the history
bump 0.10.0
  • Loading branch information
chez-shanpu authored Jan 10, 2025
2 parents 23c8eb7 + 9fab7c1 commit 2584b8b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions charts/tenet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
22 changes: 13 additions & 9 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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

0 comments on commit 2584b8b

Please sign in to comment.