From 0dabe4851bde1ce38b3be9869568fdcb221c87f4 Mon Sep 17 00:00:00 2001 From: Michael Aydinbas Date: Thu, 13 Oct 2022 00:14:22 +0200 Subject: [PATCH] fix wrong version in __version__ --- pyproject.toml | 2 +- src/pystatis/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 18fefd2..00856a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ maintainers = [ ] description = "Python wrapper for GENESIS web service interface (API) of the Federal Statistical Office." name = "pystatis" -version = "0.1.2" +version = "0.1.3" readme = "README.md" repository = "https://github.com/CorrelAid/pystatis/tree/v0.1.0" classifiers = [ diff --git a/src/pystatis/__init__.py b/src/pystatis/__init__.py index 6e37387..1071ac7 100644 --- a/src/pystatis/__init__.py +++ b/src/pystatis/__init__.py @@ -15,7 +15,7 @@ from pystatis.profile import change_password, remove_result from pystatis.table import Table -__version__ = "0.1.0" +__version__ = "0.1.3" __all__ = [ "change_password",