Skip to content

Commit

Permalink
fixed type hint of optional argument for python 3.9 (#42)
Browse files Browse the repository at this point in the history
* fixed type hint of optional argument for python 3.9
* Added changes
* Updated version to 0.4.0
  • Loading branch information
ckunki authored May 16, 2024
1 parent dd5f02b commit 4ed81db
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Unreleased

# Bugfixes

* Fixed typehint for optional argument to enable usage with python 3.9
1 change: 1 addition & 0 deletions exasol/saas/client/api_access.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import annotations
import getpass
import logging
import time
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-saas-api"
version = "0.4.0"
version = "0.5.0"
description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services"
packages = [ {include = "exasol"}, ]
authors = [ "Christoph Kuhnke <[email protected]>" ]
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 4
MINOR = 5
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

0 comments on commit 4ed81db

Please sign in to comment.