Skip to content

Commit

Permalink
Prepare release v0.6.2 (#1965)
Browse files Browse the repository at this point in the history
Change-Id: Icabeb0cca6f7680173d72be29a293731f93d8f9b
  • Loading branch information
alculquicondor committed Apr 10, 2024
1 parent 406a088 commit 223106e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG/CHANGELOG-0.6.md
@@ -1,3 +1,18 @@
## v0.6.2

Changes since `v0.6.1`:

### Bug or Regression

- Avoid unnecessary preemptions when there are multiple candidates for preemption with the same admission timestamp (#1880, @alculquicondor)
- Fix Pods in Pod groups stuck with finalizers when deleted immediately after Succeeded (#1916, @alculquicondor)
- Fix preemption to reclaim quota that is blocked by an earlier pending Workload from another ClusterQueue in the same cohort. (#1868, @alculquicondor)
- Reduce number of Workload reconciliations due to wrong equality check. (#1917, @gabesaba)

### Other (Cleanup or Flake)

- Improve pod integration performance (#1953, @gabesaba)

## v0.6.1

Changes Since `v0.6.0`:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -88,7 +88,7 @@ LD_FLAGS += -X '$(version_pkg).GitCommit=$(shell git rev-parse HEAD)'

# Update these variables when preparing a new release or a release branch.
# Then run `make prepare-release-branch`
RELEASE_VERSION=v0.6.1
RELEASE_VERSION=v0.6.2
RELEASE_BRANCH=release-0.6

.PHONY: all
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -57,7 +57,7 @@ Read the [overview](https://kueue.sigs.k8s.io/docs/overview/) to learn more.
To install the latest release of Kueue in your cluster, run the following command:

```shell
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.6.1/manifests.yaml
kubectl apply --server-side -f https://github.com/kubernetes-sigs/kueue/releases/download/v0.6.2/manifests.yaml
```

The controller runs in the `kueue-system` namespace.
Expand Down
2 changes: 1 addition & 1 deletion charts/kueue/Chart.yaml
Expand Up @@ -18,4 +18,4 @@ version: 0.1.0
# 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: "v0.6.1"
appVersion: "v0.6.2"
2 changes: 1 addition & 1 deletion site/config.toml
Expand Up @@ -92,7 +92,7 @@ ignoreFiles = []
# The major.minor version tag for the version of the docs represented in this
# branch of the repository. Used in the "version-banner" partial to display a
# version number for this doc set.
version = "v0.6.1"
version = "v0.6.2"

# Flag used in the "version-banner" partial to decide whether to display a
# banner on every page indicating that this is an archived version of the docs.
Expand Down

0 comments on commit 223106e

Please sign in to comment.