From b00573bde265c1f53bc1a88afb6715d7bac6ec57 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 20 Oct 2020 22:31:31 +0200 Subject: [PATCH] new release: 0.12.4-stable --- .bumpversion.cfg | 2 +- .github/workflows/release.yml | 14 +++++++------- docker-compose.yml | 6 +++--- docs/installation/docker-compose.md | 2 +- docs/installation/kubernetes.md | 2 +- helm/Chart.yaml | 4 ++-- helm/values.yaml | 2 +- passbook/__init__.py | 2 +- proxy/pkg/version.go | 2 +- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a7df34653..172cefcdd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.3-stable +current_version = 0.12.4-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 31d16f14f..dc6cbff02 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,11 +18,11 @@ jobs: - name: Building Docker Image run: docker build --no-cache - -t beryju/passbook:0.12.3-stable + -t beryju/passbook:0.12.4-stable -t beryju/passbook:latest -f Dockerfile . - name: Push Docker Container to Registry (versioned) - run: docker push beryju/passbook:0.12.3-stable + run: docker push beryju/passbook:0.12.4-stable - name: Push Docker Container to Registry (latest) run: docker push beryju/passbook:latest build-proxy: @@ -48,11 +48,11 @@ jobs: cd proxy docker build \ --no-cache \ - -t beryju/passbook-proxy:0.12.3-stable \ + -t beryju/passbook-proxy:0.12.4-stable \ -t beryju/passbook-proxy:latest \ -f Dockerfile . - name: Push Docker Container to Registry (versioned) - run: docker push beryju/passbook-proxy:0.12.3-stable + run: docker push beryju/passbook-proxy:0.12.4-stable - name: Push Docker Container to Registry (latest) run: docker push beryju/passbook-proxy:latest build-static: @@ -77,11 +77,11 @@ jobs: run: docker build --no-cache --network=$(docker network ls | grep github | awk '{print $1}') - -t beryju/passbook-static:0.12.3-stable + -t beryju/passbook-static:0.12.4-stable -t beryju/passbook-static:latest -f static.Dockerfile . - name: Push Docker Container to Registry (versioned) - run: docker push beryju/passbook-static:0.12.3-stable + run: docker push beryju/passbook-static:0.12.4-stable - name: Push Docker Container to Registry (latest) run: docker push beryju/passbook-static:latest test-release: @@ -114,5 +114,5 @@ jobs: SENTRY_PROJECT: passbook SENTRY_URL: https://sentry.beryju.org with: - tagName: 0.12.3-stable + tagName: 0.12.4-stable environment: beryjuorg-prod diff --git a/docker-compose.yml b/docker-compose.yml index e8cfbc433..8f69d28c3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,7 +19,7 @@ services: networks: - internal server: - image: beryju/passbook:${PASSBOOK_TAG:-0.12.3-stable} + image: beryju/passbook:${PASSBOOK_TAG:-0.12.4-stable} command: server environment: PASSBOOK_REDIS__HOST: redis @@ -40,7 +40,7 @@ services: env_file: - .env worker: - image: beryju/passbook:${PASSBOOK_TAG:-0.12.3-stable} + image: beryju/passbook:${PASSBOOK_TAG:-0.12.4-stable} command: worker networks: - internal @@ -54,7 +54,7 @@ services: env_file: - .env static: - image: beryju/passbook-static:${PASSBOOK_TAG:-0.12.3-stable} + image: beryju/passbook-static:${PASSBOOK_TAG:-0.12.4-stable} networks: - internal labels: diff --git a/docs/installation/docker-compose.md b/docs/installation/docker-compose.md index 4fc5e9a96..273ebb6c1 100644 --- a/docs/installation/docker-compose.md +++ b/docs/installation/docker-compose.md @@ -13,7 +13,7 @@ Download the latest `docker-compose.yml` from [here](https://raw.githubuserconte To optionally enable error-reporting, run `echo PASSBOOK_ERROR_REPORTING__ENABLED=true >> .env` -To optionally deploy a different version run `echo PASSBOOK_TAG=0.12.3-stable >> .env` +To optionally deploy a different version run `echo PASSBOOK_TAG=0.12.4-stable >> .env` If this is a fresh passbook install run the following commands to generate a password: diff --git a/docs/installation/kubernetes.md b/docs/installation/kubernetes.md index 2b2c4a8eb..cdb9b49c5 100644 --- a/docs/installation/kubernetes.md +++ b/docs/installation/kubernetes.md @@ -11,7 +11,7 @@ This installation automatically applies database migrations on startup. After th image: name: beryju/passbook name_static: beryju/passbook-static - tag: 0.12.3-stable + tag: 0.12.4-stable nameOverride: "" diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 946354b0a..6da277738 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: "0.12.3-stable" +appVersion: "0.12.4-stable" description: A Helm chart for passbook. name: passbook -version: "0.12.3-stable" +version: "0.12.4-stable" icon: https://github.com/BeryJu/passbook/blob/master/docs/images/logo.svg dependencies: - name: postgresql diff --git a/helm/values.yaml b/helm/values.yaml index 3880d0944..d7bb5fdfd 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -4,7 +4,7 @@ image: name: beryju/passbook name_static: beryju/passbook-static - tag: 0.12.3-stable + tag: 0.12.4-stable nameOverride: "" diff --git a/passbook/__init__.py b/passbook/__init__.py index 28b49ba0e..fafc034a2 100644 --- a/passbook/__init__.py +++ b/passbook/__init__.py @@ -1,2 +1,2 @@ """passbook""" -__version__ = "0.12.3-stable" +__version__ = "0.12.4-stable" diff --git a/proxy/pkg/version.go b/proxy/pkg/version.go index 12b977ffa..9fa62eb2c 100644 --- a/proxy/pkg/version.go +++ b/proxy/pkg/version.go @@ -1,3 +1,3 @@ package pkg -const VERSION = "0.12.3-stable" +const VERSION = "0.12.4-stable"