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 0.10.0 #49

Merged
merged 2 commits into from
Jan 10, 2025
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
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
Loading