Skip to content

Commit

Permalink
new release: 0.10.4-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Sep 19, 2020
1 parent c90906c commit c25eda6
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.3-stable
current_version = 0.10.4-stable
tag = True
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\-(?P<release>.*)
Expand All @@ -10,7 +10,7 @@ tag_name = version/{new_version}
[bumpversion:part:release]
optional_value = stable
first_value = beta
values =
values =
alpha
beta
stable
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- name: Building Docker Image
run: docker build
--no-cache
-t beryju/passbook:0.10.3-stable
-t beryju/passbook:0.10.4-stable
-t beryju/passbook:latest
-f Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook:0.10.3-stable
run: docker push beryju/passbook:0.10.4-stable
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook:latest
build-proxy:
Expand All @@ -48,11 +48,11 @@ jobs:
cd proxy
docker build \
--no-cache \
-t beryju/passbook-proxy:0.10.3-stable \
-t beryju/passbook-proxy:0.10.4-stable \
-t beryju/passbook-proxy:latest \
-f Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook-proxy:0.10.3-stable
run: docker push beryju/passbook-proxy:0.10.4-stable
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook-proxy:latest
build-static:
Expand All @@ -77,11 +77,11 @@ jobs:
run: docker build
--no-cache
--network=$(docker network ls | grep github | awk '{print $1}')
-t beryju/passbook-static:0.10.3-stable
-t beryju/passbook-static:0.10.4-stable
-t beryju/passbook-static:latest
-f static.Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook-static:0.10.3-stable
run: docker push beryju/passbook-static:0.10.4-stable
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook-static:latest
test-release:
Expand Down Expand Up @@ -114,5 +114,5 @@ jobs:
SENTRY_PROJECT: passbook
SENTRY_URL: https://sentry.beryju.org
with:
tagName: 0.10.3-stable
tagName: 0.10.4-stable
environment: beryjuorg-prod
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
labels:
- traefik.enable=false
server:
image: beryju/passbook:${PASSBOOK_TAG:-0.10.3-stable}
image: beryju/passbook:${PASSBOOK_TAG:-0.10.4-stable}
command: server
environment:
PASSBOOK_REDIS__HOST: redis
Expand All @@ -41,7 +41,7 @@ services:
env_file:
- .env
worker:
image: beryju/passbook:${PASSBOOK_TAG:-0.10.3-stable}
image: beryju/passbook:${PASSBOOK_TAG:-0.10.4-stable}
command: worker
networks:
- internal
Expand All @@ -55,7 +55,7 @@ services:
env_file:
- .env
static:
image: beryju/passbook-static:${PASSBOOK_TAG:-0.10.3-stable}
image: beryju/passbook-static:${PASSBOOK_TAG:-0.10.4-stable}
networks:
- internal
labels:
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/docker-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.3-stable >> .env`
To optionally deploy a different version run `echo PASSBOOK_TAG=0.10.4-stable >> .env`

If this is a fresh passbook install run the following commands to generate a password:

Expand Down
2 changes: 1 addition & 1 deletion docs/installation/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.3-stable
tag: 0.10.4-stable
nameOverride: ""
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "0.10.3-stable"
appVersion: "0.10.4-stable"
description: A Helm chart for passbook.
name: passbook
version: "0.10.3-stable"
version: "0.10.4-stable"
icon: https://github.com/BeryJu/passbook/blob/master/docs/images/logo.svg
dependencies:
- name: postgresql
Expand Down
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
image:
name: beryju/passbook
name_static: beryju/passbook-static
tag: 0.10.3-stable
tag: 0.10.4-stable

nameOverride: ""

Expand Down
2 changes: 1 addition & 1 deletion passbook/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""passbook"""
__version__ = "0.10.3-stable"
__version__ = "0.10.4-stable"
2 changes: 1 addition & 1 deletion proxy/pkg/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package pkg

const VERSION = "0.10.3-stable"
const VERSION = "0.10.4-stable"

0 comments on commit c25eda6

Please sign in to comment.