diff --git a/CHANGELOG.md b/CHANGELOG.md index d52d7e4..d2e78f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [v0.13.2] - 2023-07-01 ### Changed - Upgraded `statsmodels` to `0.14.0`. - Upgraded `dataclasses-json` to `0.5.8`. @@ -171,7 +173,9 @@ Holt-Winters configuration. - Added the ability to use Linear Regression models to predict future scaling. [Unreleased]: -https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.13.1...HEAD +https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.13.2...HEAD +[v0.13.2]: +https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.13.1...v0.13.2 [v0.13.1]: https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.13.0...v0.13.1 [v0.13.0]: diff --git a/README.md b/README.md index 7785a17..befac33 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ This PHPA acts like a Horizontal Pod Autoscaler and autoscales to try and keep t The operator for managing Predictive Horizontal Pod Autoscalers can be installed using Helm: ```bash -VERSION=v0.13.1 +VERSION=v0.13.2 HELM_CHART=predictive-horizontal-pod-autoscaler-operator helm install ${HELM_CHART} https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/releases/download/${VERSION}/predictive-horizontal-pod-autoscaler-${VERSION}.tgz ``` diff --git a/docs/user-guide/getting-started.md b/docs/user-guide/getting-started.md index 21614ba..ac51616 100644 --- a/docs/user-guide/getting-started.md +++ b/docs/user-guide/getting-started.md @@ -31,13 +31,13 @@ k3d cluster create phpa-test-cluster Installing PHPAs requires you to have installed the PHPA operator first onto your cluster. -In this guide we are using `v0.13.1` of the PHPA operator, but check out the [installation +In this guide we are using `v0.13.2` of the PHPA operator, but check out the [installation guide](./installation.md) for more up to date instructions for later releases. Run the following commands to install the PHPA operator: ```bash -VERSION=v0.13.1 +VERSION=v0.13.2 HELM_CHART=predictive-horizontal-pod-autoscaler-operator helm install ${HELM_CHART} https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/releases/download/${VERSION}/predictive-horizontal-pod-autoscaler-${VERSION}.tgz ``` diff --git a/docs/user-guide/installation.md b/docs/user-guide/installation.md index 408a181..280f45b 100644 --- a/docs/user-guide/installation.md +++ b/docs/user-guide/installation.md @@ -7,7 +7,7 @@ The PHPA operator can be installed using Helm, run this command to install the o cluster-wide scope: ```bash -VERSION=v0.13.1 +VERSION=v0.13.2 HELM_CHART=predictive-horizontal-pod-autoscaler-operator helm install ${HELM_CHART} https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/releases/download/${VERSION}/predictive-horizontal-pod-autoscaler-${VERSION}.tgz ```