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}"