From 19abf194bb868ea536a8d036d4a844f54a4f7345 Mon Sep 17 00:00:00 2001 From: Yi Chen Date: Mon, 24 Feb 2025 11:06:45 +0800 Subject: [PATCH] Release v0.14.1 (#1275) Signed-off-by: Yi Chen --- CHANGELOG.md | 16 ++++++++++++++++ VERSION | 2 +- arena-artifacts/Chart.yaml | 4 ++-- docs/release.md | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d309fb33..65f6134db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [v0.14.1](https://github.com/kubeflow/arena/tree/v0.14.1) (2025-02-24) + +### Bug Fixes + +- fix: device value does not support k8s resource quantity ([#1267](https://github.com/kubeflow/arena/pull/1267) by [@ChenYi015](https://github.com/ChenYi015)) +- fix: pytorchjob does not support backoff limit ([#1272](https://github.com/kubeflow/arena/pull/1272) by [@ChenYi015](https://github.com/ChenYi015)) +- unset env NVIDIA_VISIBLE_DEVICES when gpushare is enabled ([#1273](https://github.com/kubeflow/arena/pull/1273) by [@ChenYi015](https://github.com/ChenYi015)) + +### Misc + +- docs: fixed typo ([#1257](https://github.com/kubeflow/arena/pull/1257) by [@DBMxrco](https://github.com/DBMxrco)) +- Bump github.com/golang/glog from 1.2.3 to 1.2.4 ([#1263](https://github.com/kubeflow/arena/pull/1263) by [@dependabot[bot]](https://github.com/apps/dependabot)) +- fix: format of tensorflow standalone training docs is messed up ([#1265](https://github.com/kubeflow/arena/pull/1265) by [@ChenYi015](https://github.com/ChenYi015)) + +[Full Changelog](https://github.com/kubeflow/arena/compare/v0.14.0...v0.14.1) + ## [v0.14.0](https://github.com/kubeflow/arena/tree/v0.14.0) (2025-02-12) ### Features diff --git a/VERSION b/VERSION index a803cc227..930e3000b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.14.0 +0.14.1 diff --git a/arena-artifacts/Chart.yaml b/arena-artifacts/Chart.yaml index be1e1eb80..c54a38ea6 100644 --- a/arena-artifacts/Chart.yaml +++ b/arena-artifacts/Chart.yaml @@ -15,13 +15,13 @@ 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.14.0 +version: 0.14.1 # 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.14.0 +appVersion: 0.14.1 dependencies: - name: tf-operator diff --git a/docs/release.md b/docs/release.md index 61d19ee2c..ac94ef80e 100644 --- a/docs/release.md +++ b/docs/release.md @@ -79,7 +79,7 @@ After `VERSION` file is modified and pushed to the master branch, a release work python hack/generate-changelog.py \ --token=${GH_TOKEN} \ - --range=${PREVIOUS_RELEASE}.. + --range=${PREVIOUS_RELEASE}..${CURRENT_RELEASE} ``` 2. Group PRs in the `CHANGELOG.md` file into **Features**, **Bug Fixes** and **Misc**, etc.