From d3bb81f300424422699b07938ecd1e2c8cc38265 Mon Sep 17 00:00:00 2001
From: Martin Weise <martin.weise@tuwien.ac.at>
Date: Mon, 10 Jun 2024 08:21:48 +0200
Subject: [PATCH] Updated docs

---
 .docs/docker/_header.md |  6 +++---
 .gitlab-ci.yml          |  1 -
 CONTRIBUTING.md         | 11 +++++++++++
 Makefile                |  4 ++--
 4 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/.docs/docker/_header.md b/.docs/docker/_header.md
index 3a5b13338a..9deeeab3ac 100644
--- a/.docs/docker/_header.md
+++ b/.docs/docker/_header.md
@@ -10,7 +10,7 @@
 
 # Supported tags
 
-* [`1.4.3`](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/blob/release-1.4.3/dbrepo-DIR/Dockerfile/)
+* [`1.4.4`](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/blob/release-1.4.3/dbrepo-DIR/Dockerfile/)
 * [`latest`](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/blob/release-latest/dbrepo-DIR/Dockerfile/)
 
 # Non-supported tags
@@ -29,8 +29,8 @@
 
 * **Source of this description:**
 
-  [docs repo's `.docs/docker` directory](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/tree/release-1.4.3/.docs/docker)
-  ([history](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/commits/release-1.4.3/.docs/docker))
+  [docs repo's `.docs/docker` directory](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/tree/release-1.4.4/.docs/docker)
+  ([history](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/commits/release-1.4.34/.docs/docker))
 
 # What is DBRepo?
 
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1826abe668..fb8052ad85 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,6 @@ variables:
   TRIVY_CACHE_DIR: ".trivycache/"
   DOCKER_HOST: "unix:///var/run/dind/docker.sock"
   TESTCONTAINERS_RYUK_DISABLED: "false"
-  DOC_VERSIONS: "latest,1.4.3,1.4.2,1.4.1,1.4.0"
   APP_VERSION: "1.4.4"
   CHART_VERSION: "1.4.4"
 
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 5dfe6d4af8..e6a6e8d951 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -25,3 +25,14 @@ Explore the available labels in order to proper categorize it and get the fastes
 
 If the contribution it's a bugfix, a little feature or documentation improvement that could be implemented in, lets say,
 a couple of days at maximum, one could go directly for a PR. It's fine.
+
+### Release checklist
+
+- [ ] Change variables `APP_VERSION` and `CHART_VERSION` in CI/CD file `.gitlab-ci.yml`
+- [ ] Change Helm chart variables in `helm/dbrepo/Chart.yaml` and update the chart README.md and values.schema.json for artifact hub with `make gen-helm-doc`
+- [ ] Change Python library version in `lib/python/setup.py` and `lib/python/pyproject.toml` for PyPI
+- [ ] Change the supported tags list in `.docs/docker/_header.md` for docker hub
+- [ ] Change the maven version in the metadata & data services:
+  - `mvn -f ./dbrepo-metadata-service/pom.xml versions:set -DnewVersion=VERSION`
+  - `mvn -f ./dbrepo-data-service/pom.xml versions:set -DnewVersion=VERSION`
+- [ ] Change the versions in `versions.json` for the generated website
\ No newline at end of file
diff --git a/Makefile b/Makefile
index 84d1f85e5d..ea9a9d0ce3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 .PHONY: all
 
-APP_VERSION ?= 1.4.3
-CHART_VERSION ?= 1.4.3
+APP_VERSION ?= 1.4.4
+CHART_VERSION ?= 1.4.4
 REPOSITORY_URL ?= docker.io/dbrepo
 
 .PHONY: all
-- 
GitLab