From 2639e10da96d7f09aeb4b95037018bbe075e4237 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Tue, 8 Jun 2021 23:17:32 -0400 Subject: [PATCH] Prepare 2.1.1 for release --- CHANGELOG.md | 2 +- CONTRIBUTING.md | 2 +- chart/elastalert2/Chart.yaml | 4 ++-- chart/elastalert2/README.md | 2 +- chart/elastalert2/values.yaml | 2 +- docs/source/running_elastalert.rst | 2 +- setup.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c53ce4d..4dc7c3c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ ## Other changes - None -# Unreleased +# 2.1.1 ## Breaking changes - None diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e69deb9f..429d51da 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,7 @@ Maintainers, when creating a new release, follow the procedure below: - [Chart.yaml](chart/elastalert2/Chart.yaml): Match chart version and the app version to the new release version (typically keep them in sync) - [values.yaml](chart/elastalert2/values.yaml): Match the default image version to the new release version. - [Chart README.md](chart/elastalert2/README.md): Match the default image version to the new release version. - - [Project README.md](README.md): Match the default image version to the new release version. + - [Docs](docs/source/running_elastalert.rst): Match the default image version to the new release version. - [CHANGELOG.md](CHANGELOG.md): This must contain all PRs and any other relevent notes about this release 3. Publish a [new][1] release. - The title (and tag) of the release will be the same value as the new version determined in step 1. diff --git a/chart/elastalert2/Chart.yaml b/chart/elastalert2/Chart.yaml index b713a29d..9ec21f9b 100644 --- a/chart/elastalert2/Chart.yaml +++ b/chart/elastalert2/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 description: Automated rule-based alerting for Elasticsearch name: elastalert2 -version: 2.1.0 -appVersion: 2.1.0 +version: 2.1.1 +appVersion: 2.1.1 home: https://github.com/jertel/elastalert2 sources: - https://github.com/jertel/elastalert2 diff --git a/chart/elastalert2/README.md b/chart/elastalert2/README.md index ee837de0..92d0ec78 100644 --- a/chart/elastalert2/README.md +++ b/chart/elastalert2/README.md @@ -47,7 +47,7 @@ The command removes all the Kubernetes components associated with the chart and | Parameter | Description | Default | |----------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|---------------------------------| | `image.repository` | docker image | jertel/elastalert2 | -| `image.tag` | docker image tag | 2.1.0 | +| `image.tag` | docker image tag | 2.1.1 | | `image.pullPolicy` | image pull policy | IfNotPresent | | `podAnnotations` | Annotations to be added to pods | {} | | `command` | command override for container | `NULL` | diff --git a/chart/elastalert2/values.yaml b/chart/elastalert2/values.yaml index 9b13734d..a61adb87 100644 --- a/chart/elastalert2/values.yaml +++ b/chart/elastalert2/values.yaml @@ -25,7 +25,7 @@ image: # docker image repository: jertel/elastalert2 # docker image tag - tag: 2.1.0 + tag: 2.1.1 pullPolicy: IfNotPresent resources: {} diff --git a/docs/source/running_elastalert.rst b/docs/source/running_elastalert.rst index de4de8c4..4afb783a 100644 --- a/docs/source/running_elastalert.rst +++ b/docs/source/running_elastalert.rst @@ -78,7 +78,7 @@ If you're interested in a pre-built Docker image check out the Be aware that the ``latest`` tag of the image represents the latest commit into the master branch. If you prefer to upgrade more slowly you will need utilize a -versioned tag, such as ``2.1.0`` instead, or ``2`` if you are comfortable with +versioned tag, such as ``2.1.1`` instead, or ``2`` if you are comfortable with always using the latest released version of ElastAlert 2. A properly configured config.yaml file must be mounted into the container during diff --git a/setup.py b/setup.py index 67052553..2b304755 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ base_dir = os.path.dirname(__file__) setup( name='elastalert2', - version='2.1.0', + version='2.1.1', description='Automated rule-based alerting for Elasticsearch', setup_requires='setuptools', license='Apache 2.0',