Skip to content

Commit

Permalink
chore: prepare v3.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kangasta committed Aug 12, 2024
1 parent c7e72fd commit 839ab80
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.11.1] - 2024-08-12

### Fixed

- In `storage modify`, avoid segfault if the target storage does not have backup rule in the storage details. This would have happened, for example, when renaming private templates.
Expand Down Expand Up @@ -425,7 +427,8 @@ Initial public beta release :tada:
### Added
- Current feature set added! First internal release
[Unreleased]: https://github.com/UpCloudLtd/upcloud-cli/compare/v3.11.0...HEAD
[Unreleased]: https://github.com/UpCloudLtd/upcloud-cli/compare/v3.11.1...HEAD
[3.11.1]: https://github.com/UpCloudLtd/upcloud-cli/compare/v3.11.0...v3.11.1
[3.11.0]: https://github.com/UpCloudLtd/upcloud-cli/compare/v3.10.0...v3.11.0
[3.10.0]: https://github.com/UpCloudLtd/upcloud-cli/compare/v3.9.0...v3.10.0
[3.9.0]: https://github.com/UpCloudLtd/upcloud-cli/compare/v3.8.1...v3.9.0
Expand Down
3 changes: 2 additions & 1 deletion internal/commands/objectstorage/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ type deleteCommand struct {
// InitCommand implements Command.InitCommand
func (c *deleteCommand) InitCommand() {
flags := &pflag.FlagSet{}
config.AddToggleFlag(flags, &c.deleteUsers, "delete-users", false, "Delete all users from the service before deleting the object storage instance.")
config.AddToggleFlag(flags, &c.deletePolicies, "delete-buckets", false, "Delete all buckets from the service before deleting the object storage instance.")
config.AddToggleFlag(flags, &c.deletePolicies, "delete-policies", false, "Delete all policies from the service before deleting the object storage instance.")
config.AddToggleFlag(flags, &c.deleteUsers, "delete-users", false, "Delete all users from the service before deleting the object storage instance.")
c.AddFlags(flags)
}

Expand Down

0 comments on commit 839ab80

Please sign in to comment.