From f2d1766ba7909d4b42431d680da767aba27c4c48 Mon Sep 17 00:00:00 2001 From: Christian Stefanescu Date: Wed, 3 May 2023 10:55:54 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.14.1-rc12=20=E2=86=92=203.1?= =?UTF-8?q?4.1-rc13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- contrib/aleph-traefik-minio-keycloak/docker-compose.yml | 8 ++++---- contrib/keycloak/docker-compose.dev-keycloak.yml | 8 ++++---- 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 +- 9 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c81e0a1d3b..684210e4b8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.14.1-rc12 +current_version = 3.14.1-rc13 tag_name = {new_version} commit = True tag = True diff --git a/contrib/aleph-traefik-minio-keycloak/docker-compose.yml b/contrib/aleph-traefik-minio-keycloak/docker-compose.yml index 8d7f1ed859..cbb353dfcd 100644 --- a/contrib/aleph-traefik-minio-keycloak/docker-compose.yml +++ b/contrib/aleph-traefik-minio-keycloak/docker-compose.yml @@ -65,7 +65,7 @@ services: - "traefik.enable=false" worker: - image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} command: aleph worker restart: on-failure links: @@ -90,7 +90,7 @@ services: - "traefik.enable=false" shell: - image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} command: /bin/bash depends_on: - postgres @@ -110,7 +110,7 @@ services: - "traefik.enable=false" api: - image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} command: gunicorn -w 6 -b 0.0.0.0:8000 --log-level debug --log-file - aleph.wsgi:app expose: - 8000 @@ -132,7 +132,7 @@ services: - "traefik.enable=false" ui: - image: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1-rc13} depends_on: - api - traefik diff --git a/contrib/keycloak/docker-compose.dev-keycloak.yml b/contrib/keycloak/docker-compose.dev-keycloak.yml index 604903e625..ad18a51264 100644 --- a/contrib/keycloak/docker-compose.dev-keycloak.yml +++ b/contrib/keycloak/docker-compose.dev-keycloak.yml @@ -16,7 +16,7 @@ services: elasticsearch: build: context: services/elasticsearch - image: ghcr.io/alephdata/aleph-elasticsearch:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph-elasticsearch:${ALEPH_TAG:-3.14.1-rc13} hostname: elasticsearch environment: - discovery.type=single-node @@ -64,7 +64,7 @@ services: app: build: context: . - image: alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} hostname: aleph command: /bin/bash links: @@ -92,7 +92,7 @@ services: api: build: context: . - image: alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} command: aleph run -h 0.0.0.0 -p 5000 --with-threads --reload --debugger ports: - "127.0.0.1:5000:5000" @@ -126,7 +126,7 @@ services: ui: build: context: ui - image: alephdata/aleph-ui:${ALEPH_TAG:-3.14.1-rc12} + image: alephdata/aleph-ui:${ALEPH_TAG:-3.14.1-rc13} links: - api command: npm run start diff --git a/docker-compose.yml b/docker-compose.yml index 3e15e2e6f7..a540661cc6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -46,7 +46,7 @@ services: - aleph.env worker: - image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} command: aleph worker restart: on-failure depends_on: @@ -62,7 +62,7 @@ services: - aleph.env shell: - image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} command: /bin/bash depends_on: - postgres @@ -80,7 +80,7 @@ services: - aleph.env api: - image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph:${ALEPH_TAG:-3.14.1-rc13} 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: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1-rc12} + image: ghcr.io/alephdata/aleph-ui-production:${ALEPH_TAG:-3.14.1-rc13} depends_on: - api ports: diff --git a/helm/charts/aleph/Chart.yaml b/helm/charts/aleph/Chart.yaml index 5caed7be4d..491cd96ea6 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.14.1-rc12 -appVersion: 3.14.1-rc12 +version: 3.14.1-rc13 +appVersion: 3.14.1-rc13 diff --git a/helm/charts/aleph/README.md b/helm/charts/aleph/README.md index 5a935dfd05..d235e7be2c 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.14.1-rc12"` | Aleph docker image tag | +| global.image.tag | string | `"3.14.1-rc13"` | 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 2f389a40ff..6bca4ed101 100644 --- a/helm/charts/aleph/values.yaml +++ b/helm/charts/aleph/values.yaml @@ -6,7 +6,7 @@ global: image: repository: ghcr.io/alephdata/aleph - tag: "3.14.1-rc12" + tag: "3.14.1-rc13" pullPolicy: Always commonEnv: diff --git a/setup.py b/setup.py index b560faa693..7a2fae5c41 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="aleph", - version="3.14.1-rc12", + version="3.14.1-rc13", description="Document sifting web frontend", classifiers=[ "Intended Audience :: Developers", diff --git a/ui/package.json b/ui/package.json index 1fba272bb8..962a4928d8 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "aleph-ui", - "version": "3.14.1-rc12", + "version": "3.14.1-rc13", "private": true, "dependencies": { "@alephdata/followthemoney": "^3.3.0",