From 3cc98bf9af5ac5e40d95d6bcc22b152b0576f371 Mon Sep 17 00:00:00 2001 From: Steve Haffenden Date: Mon, 21 Nov 2022 11:16:28 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.13.0-rc1=20=E2=86=92=203.13?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docker-compose.yml | 8 ++++---- helm/charts/aleph/Chart.yaml | 4 ++-- helm/charts/aleph/README.md | 2 +- helm/charts/aleph/values.yaml | 2 +- setup.py | 2 +- ui/package.json | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3c73bcfc9f..41cc281b39 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.13.0-rc1 +current_version = 3.13.0 tag_name = {new_version} commit = True tag = True diff --git a/docker-compose.yml b/docker-compose.yml index 3a7d14010b..3446297bd4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -46,7 +46,7 @@ services: - aleph.env worker: - image: alephdata/aleph:${ALEPH_TAG:-3.13.0-rc1} + image: alephdata/aleph:${ALEPH_TAG:-3.13.0} command: aleph worker restart: on-failure depends_on: @@ -62,7 +62,7 @@ services: - aleph.env shell: - image: alephdata/aleph:${ALEPH_TAG:-3.13.0-rc1} + image: alephdata/aleph:${ALEPH_TAG:-3.13.0} command: /bin/bash depends_on: - postgres @@ -80,7 +80,7 @@ services: - aleph.env api: - image: alephdata/aleph:${ALEPH_TAG:-3.13.0-rc1} + image: alephdata/aleph:${ALEPH_TAG:-3.13.0} command: gunicorn -w 6 -b 0.0.0.0:8000 --timeout 3600 --log-level debug --log-file - aleph.wsgi:app expose: - 8000 @@ -98,7 +98,7 @@ services: - aleph.env ui: - image: alephdata/aleph-ui-production:${ALEPH_TAG:-3.13.0-rc1} + image: alephdata/aleph-ui-production:${ALEPH_TAG:-3.13.0} depends_on: - api ports: diff --git a/helm/charts/aleph/Chart.yaml b/helm/charts/aleph/Chart.yaml index 296db64903..b4b7699f53 100644 --- a/helm/charts/aleph/Chart.yaml +++ b/helm/charts/aleph/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: aleph description: Helm chart for Aleph type: application -version: 3.13.0-rc1 -appVersion: 3.13.0-rc1 +version: 3.13.0 +appVersion: 3.13.0 diff --git a/helm/charts/aleph/README.md b/helm/charts/aleph/README.md index 095f45dbe0..84d99a2cd1 100644 --- a/helm/charts/aleph/README.md +++ b/helm/charts/aleph/README.md @@ -11,7 +11,7 @@ Helm chart for Aleph | global.amazon | bool | `true` | Are we using AWS services like s3? | | global.google | bool | `false` | Are we using GCE services like storage, vision api? | | global.image.repository | string | `"alephdata/aleph"` | Aleph docker image repo | -| global.image.tag | string | `"3.13.0-rc1"` | Aleph docker image tag | +| global.image.tag | string | `"3.13.0"` | Aleph docker image tag | | global.image.tag | string | `"Always"` | | | global.namingPrefix | string | `"aleph"` | Prefix for the names of k8s resources | diff --git a/helm/charts/aleph/values.yaml b/helm/charts/aleph/values.yaml index 2be4833e78..f14b3d31a7 100644 --- a/helm/charts/aleph/values.yaml +++ b/helm/charts/aleph/values.yaml @@ -6,7 +6,7 @@ global: image: repository: alephdata/aleph - tag: "3.13.0-rc1" + tag: "3.13.0" pullPolicy: Always commonEnv: diff --git a/setup.py b/setup.py index 90662461b2..5e344db09c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="aleph", - version="3.13.0-rc1", + version="3.13.0", description="Document sifting web frontend", classifiers=[ "Intended Audience :: Developers", diff --git a/ui/package.json b/ui/package.json index b25654fbcb..e5cab18650 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "aleph-ui", - "version": "3.13.0-rc1", + "version": "3.13.0", "private": true, "dependencies": { "@alephdata/followthemoney": "^3.0.10",