From c062e77b21e66df1b31aba08b6862b62af46bce8 Mon Sep 17 00:00:00 2001 From: Vadym Doroshenko <53558779+dvadym@users.noreply.github.com> Date: Wed, 25 Oct 2023 12:48:55 +0200 Subject: [PATCH] Update to version 0.2.1 (#500) --- pipeline_dp/__init__.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pipeline_dp/__init__.py b/pipeline_dp/__init__.py index 5c43ba4a..bf47db00 100644 --- a/pipeline_dp/__init__.py +++ b/pipeline_dp/__init__.py @@ -38,4 +38,4 @@ from pipeline_dp.pipeline_backend import PipelineBackend from pipeline_dp.pipeline_backend import SparkRDDBackend -__version__ = '0.2.1.rc7' +__version__ = '0.2.1' diff --git a/pyproject.toml b/pyproject.toml index 4f36d095..e099fab8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pipeline-dp" -version = "0.2.1.rc7" +version = "0.2.1" description = "" authors = ["Chinmay Shah ", "Vadym Doroshenko "] license = "Apache-2.0" diff --git a/setup.cfg b/setup.cfg index d6ff3027..94d999f5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1.rc7 +current_version = 0.2.1 commit = True tag = True diff --git a/setup.py b/setup.py index dd942dc7..b0c411a3 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def read(fname): setup_kwargs = { 'name': 'pipeline-dp', - 'version': '0.2.1.rc7', + 'version': '0.2.1', 'description': 'Framework for applying differential privacy to large datasets using batch processing systems', 'author': 'Chinmay Shah', 'author_email': 'chinmayshah3899@gmail.com',