From 95454ad1d38948aed3b1a48566cc18a13ff7d58d Mon Sep 17 00:00:00 2001 From: Christoph Kuhnke Date: Wed, 24 Apr 2024 16:02:33 +0200 Subject: [PATCH] Prepare release 0.2.0 (#20) set version to 0.2.0 --- pyproject.toml | 2 +- version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a298612..7ad9bd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "saas-api" -version = "0.1.0" +version = "0.2.0" description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services" packages = [ {include = "exasol"}, ] authors = [ "Christoph Kuhnke " ] diff --git a/version.py b/version.py index 9da9963..55cfb40 100644 --- a/version.py +++ b/version.py @@ -5,6 +5,6 @@ # Do not edit this file manually! # If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`. MAJOR = 0 -MINOR = 1 +MINOR = 2 PATCH = 0 VERSION = f"{MAJOR}.{MINOR}.{PATCH}"