diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4bf2a34ec..b19f78479 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0-rc2 +current_version = 0.9.0-stable tag = True commit = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)\-(?P.*) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9896f753b..b3f2bde2d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,11 +16,11 @@ jobs: - name: Building Docker Image run: docker build --no-cache - -t beryju/passbook:0.9.0-rc2 + -t beryju/passbook:0.9.0-stable -t beryju/passbook:latest -f Dockerfile . - name: Push Docker Container to Registry (versioned) - run: docker push beryju/passbook:0.9.0-rc2 + run: docker push beryju/passbook:0.9.0-stable - name: Push Docker Container to Registry (latest) run: docker push beryju/passbook:latest build-gatekeeper: @@ -37,11 +37,11 @@ jobs: cd gatekeeper docker build \ --no-cache \ - -t beryju/passbook-gatekeeper:0.9.0-rc2 \ + -t beryju/passbook-gatekeeper:0.9.0-stable \ -t beryju/passbook-gatekeeper:latest \ -f Dockerfile . - name: Push Docker Container to Registry (versioned) - run: docker push beryju/passbook-gatekeeper:0.9.0-rc2 + run: docker push beryju/passbook-gatekeeper:0.9.0-stable - name: Push Docker Container to Registry (latest) run: docker push beryju/passbook-gatekeeper:latest build-static: @@ -66,11 +66,11 @@ jobs: run: docker build --no-cache --network=$(docker network ls | grep github | awk '{print $1}') - -t beryju/passbook-static:0.9.0-rc2 + -t beryju/passbook-static:0.9.0-stable -t beryju/passbook-static:latest -f static.Dockerfile . - name: Push Docker Container to Registry (versioned) - run: docker push beryju/passbook-static:0.9.0-rc2 + run: docker push beryju/passbook-static:0.9.0-stable - name: Push Docker Container to Registry (latest) run: docker push beryju/passbook-static:latest test-release: @@ -100,5 +100,5 @@ jobs: SENTRY_PROJECT: passbook SENTRY_URL: https://sentry.beryju.org with: - tagName: 0.9.0-rc2 + tagName: 0.9.0-stable environment: production diff --git a/README.md b/README.md index c23e80c3a..1e4ccf2ae 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ wget https://raw.githubusercontent.com/BeryJu/passbook/master/docker-compose.yml # Optionally enable Error-reporting # export PASSBOOK_ERROR_REPORTING=true # Optionally deploy a different version -# export PASSBOOK_TAG=0.9.0-rc2 +# export PASSBOOK_TAG=0.9.0-stable # If this is a productive installation, set a different PostgreSQL Password # export PG_PASS=$(pwgen 40 1) docker-compose pull diff --git a/docs/installation/docker-compose.md b/docs/installation/docker-compose.md index ad70de827..ba9e3dc8b 100644 --- a/docs/installation/docker-compose.md +++ b/docs/installation/docker-compose.md @@ -16,7 +16,7 @@ wget https://raw.githubusercontent.com/BeryJu/passbook/master/docker-compose.yml # Optionally enable Error-reporting # export PASSBOOK_ERROR_REPORTING=true # Optionally deploy a different version -# export PASSBOOK_TAG=0.9.0-rc2 +# export PASSBOOK_TAG=0.9.0-stable # If this is a productive installation, set a different PostgreSQL Password # export PG_PASS=$(pwgen 40 1) docker-compose pull diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 590fb77d3..80f05dfd5 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -appVersion: "0.9.0-rc2" +appVersion: "0.9.0-stable" description: A Helm chart for passbook. name: passbook -version: "0.9.0-rc2" +version: "0.9.0-stable" icon: https://git.beryju.org/uploads/-/system/project/avatar/108/logo.png diff --git a/helm/values.yaml b/helm/values.yaml index 0fc7a983b..bdfea8a14 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -2,7 +2,7 @@ # This is a YAML-formatted file. # Declare variables to be passed into your templates. image: - tag: 0.9.0-rc2 + tag: 0.9.0-stable nameOverride: "" diff --git a/passbook/__init__.py b/passbook/__init__.py index abe0ed810..4e2d82267 100644 --- a/passbook/__init__.py +++ b/passbook/__init__.py @@ -1,2 +1,2 @@ """passbook""" -__version__ = "0.9.0-rc2" +__version__ = "0.9.0-stable"