From be9fbfe9e2cbb0fb1379b1b0db6df8ca1ce6e0f3 Mon Sep 17 00:00:00 2001 From: Ankit Kumar Date: Wed, 8 Jan 2025 20:24:39 +0100 Subject: [PATCH] binded to specific poetry version (#245) * binded to specific poetry version * binded to specific poetry version --------- Co-authored-by: Ankit Kumar --- CHANGELOG | 2 ++ Dockerfile | 2 +- cognite/transformations_cli/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b64e703e..f926ee13 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -12,6 +12,8 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +# [2.3.12] - 2025-01-08 + # [2.3.11] - 2024-07-23 - TODO: write down the changes diff --git a/Dockerfile b/Dockerfile index b02866b1..f1617638 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR / ENV PYTHONUNBUFFERED=1 # Poetry setup -RUN pip3 install poetry +RUN pip3 install poetry==1.8.3 RUN poetry config virtualenvs.create false COPY poetry.lock . diff --git a/cognite/transformations_cli/__init__.py b/cognite/transformations_cli/__init__.py index 01bdb5c3..2559bc66 100644 --- a/cognite/transformations_cli/__init__.py +++ b/cognite/transformations_cli/__init__.py @@ -1 +1 @@ -__version__ = "2.3.11" +__version__ = "2.3.12" diff --git a/pyproject.toml b/pyproject.toml index f45d801e..b3e6ebf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cognite-transformations-cli" -version = "2.3.11" +version = "2.3.12" description = "A CLI for the Transformations service in CDF" authors = ["Mathias Lohne ", "Emel Varol ", "Einar Marstrander Omang "]