From 09be1cd16b10d86dac355b87ffab2793f4eb457a Mon Sep 17 00:00:00 2001 From: Michael Schilonka Date: Fri, 1 Apr 2022 22:18:16 +0200 Subject: [PATCH] chore: bump version to 0.2.0 --- deck/configuration.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deck/configuration.py b/deck/configuration.py index 1c2ead4..7147f12 100644 --- a/deck/configuration.py +++ b/deck/configuration.py @@ -10,7 +10,7 @@ logger = logging.getLogger("deck") logger.addHandler(console) -__VERSION__ = "0.1.0" +__VERSION__ = "0.2.0" DECKFILE_FILE = "deck.yaml" diff --git a/pyproject.toml b/pyproject.toml index dc0790b..01ac468 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Deck" -version = "0.1.0" +version = "0.2.0" description = "Deck, a CLI that creates reproducible Kubernetes environments for development and testing" authors = ["Michael Schilonka "] readme = "README.md"