From 2038a9ff8aa0631c4d6251dde553f087f25b09d4 Mon Sep 17 00:00:00 2001 From: AlexanderJuestel Date: Sat, 23 Sep 2023 16:01:31 +0200 Subject: [PATCH] PrepareRelease --- docs/conf.py | 2 +- gemgis/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 2d643f5e..c6f7c9cc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ author = 'Alexander Juestel' # The full version, including alpha/beta/rc tags -release = '1.1.0' +release = '1.1.1' version = release # -- GemGIS configuration --------------------------------------------------- diff --git a/gemgis/__init__.py b/gemgis/__init__.py index 738f6a59..33477fcb 100644 --- a/gemgis/__init__.py +++ b/gemgis/__init__.py @@ -18,9 +18,9 @@ __affiliations__ = 'CGRE - RWTH Aachen University' -__version_date__ = '2023-08-18' +__version_date__ = '2023-09-23' -__version__ = '1.1.0' +__version__ = '1.1.1' __changelog__ = """What is new in version 1.1.0: diff --git a/setup.py b/setup.py index 8e823e33..380e1b7a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages from os import path -version = '1.1.0' +version = '1.1.1' # Loading Readme for Description on PyPi this_directory = path.abspath(path.dirname(__file__))