From 066e8904a301cf66a43798489ae7e7e3a46d4d07 Mon Sep 17 00:00:00 2001 From: PaulineMauryL Date: Tue, 29 Oct 2024 08:22:36 +0000 Subject: [PATCH] Release version 0.3.4 --- CONTRIBUTING.md | 2 +- client/deploy/helm/charts/lomas_client/Chart.yaml | 4 ++-- client/setup.py | 4 ++-- core/setup.py | 2 +- docs/versions.yaml | 4 ++++ server/deploy/helm/charts/lomas_server/Chart.yaml | 4 ++-- server/setup.py | 4 ++-- 7 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 06937532..6a245cc0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -80,7 +80,7 @@ The table below gives an overview of which workflows are triggered by what event Of these workflows, three of them need manual intervention to adjust the version number: -* **Client library push**: The 'version' and the 'install_requires' must be set in `client/setup.py` ('install_requires' should match the list of library in requirements.txt). +* **Client library push**: The 'version' and the 'install_requires' must be set in `core/setup.py`, `server/setup.py` and `client/setup.py` ('install_requires' should match the list of library in requirements.txt and the new version of `core`). * **Helm chart push**: The chart version (`version`) and app version (`AppVersion`) of the server and the client must be updated in `server/deploy/helm/charts/lomas_server/Chart.yml`and `client/deploy/helm/charts/lomas_client/Chart.yaml`. * **Documentation push**: If a new version is released, it must be added to the `docs/versions.yaml` file. For more details on the generation of the documentation, please refer to `docs` and the `docs/build_docs.py` script. diff --git a/client/deploy/helm/charts/lomas_client/Chart.yaml b/client/deploy/helm/charts/lomas_client/Chart.yaml index fd78019c..0ab9da85 100644 --- a/client/deploy/helm/charts/lomas_client/Chart.yaml +++ b/client/deploy/helm/charts/lomas_client/Chart.yaml @@ -4,6 +4,6 @@ description: Lomas's Secure Data Disclosure deployment chart for the client envi type: application -version: 0.3.3 +version: 0.3.4 -appVersion: "0.3.3" +appVersion: "0.3.4" diff --git a/client/setup.py b/client/setup.py index 54cdd175..539f6c25 100644 --- a/client/setup.py +++ b/client/setup.py @@ -10,7 +10,7 @@ setup( name="lomas_client", packages=find_packages(), - version="0.3.3", + version="0.3.4", description="A client to interact with the Lomas server.", long_description=long_description, long_description_content_type="text/markdown", @@ -43,7 +43,7 @@ ], python_requires=">=3.11, <3.13", install_requires=[ - "lomas-core==0.3.3", + "lomas-core==0.3.4", "requests==2.32.0", ], ) diff --git a/core/setup.py b/core/setup.py index e3799f63..6958fecd 100644 --- a/core/setup.py +++ b/core/setup.py @@ -11,7 +11,7 @@ setup( name="lomas-core", packages=find_packages(), - version="0.3.3", + version="0.3.4", description="Lomas core.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/docs/versions.yaml b/docs/versions.yaml index 7d30729e..e9662e62 100644 --- a/docs/versions.yaml +++ b/docs/versions.yaml @@ -28,5 +28,9 @@ - "en" "v0.3.3": tag: "v0.3.3" + languages: + - "en" +"v0.3.4": + tag: "v0.3.4" languages: - "en" \ No newline at end of file diff --git a/server/deploy/helm/charts/lomas_server/Chart.yaml b/server/deploy/helm/charts/lomas_server/Chart.yaml index 958ec212..333033cb 100644 --- a/server/deploy/helm/charts/lomas_server/Chart.yaml +++ b/server/deploy/helm/charts/lomas_server/Chart.yaml @@ -4,9 +4,9 @@ description: Lomas deployment chart type: application -version: 0.3.3 +version: 0.3.4 -appVersion: "0.3.3" +appVersion: "0.3.4" dependencies: - name: mongodb diff --git a/server/setup.py b/server/setup.py index 873bdcc8..653fc145 100644 --- a/server/setup.py +++ b/server/setup.py @@ -10,7 +10,7 @@ setup( name="lomas-server", packages=find_packages(), - version="0.3.3", + version="0.3.4", description="Lomas server.", long_description=long_description, long_description_content_type="text/markdown", @@ -37,7 +37,7 @@ "httpx==0.27.0", "jax==0.4.31", "jaxlib==0.4.31", - "lomas-core==0.3.3", + "lomas-core==0.3.4", "packaging==24.1", "pyaml==23.9.5", "pydantic==2.8.2",