From a890f5e2b8204c7529efb655c0bcbc38c7eee31f Mon Sep 17 00:00:00 2001 From: altescy Date: Wed, 24 Feb 2021 19:32:39 +0900 Subject: [PATCH] bump version number to v0.3.0 --- pdpcli/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_pdpcli.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pdpcli/__init__.py b/pdpcli/__init__.py index 4ea056c..831ba6f 100644 --- a/pdpcli/__init__.py +++ b/pdpcli/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.2.0' +__version__ = '0.3.0' from pdpcli.stages import Stage from pdpcli.commands.subcommand import Subcommand diff --git a/pyproject.toml b/pyproject.toml index 16a05bd..8f97f51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pdpcli" -version = "0.2.0" +version = "0.3.0" description = "PdpCLI is a pandas DataFrame processing CLI tool which enables you to build a pandas pipeline from a configuration file." authors = ["altescy "] license = "MIT License" diff --git a/tests/test_pdpcli.py b/tests/test_pdpcli.py index cf0be1d..c93a00a 100644 --- a/tests/test_pdpcli.py +++ b/tests/test_pdpcli.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '0.2.0' + assert __version__ == '0.3.0'