From d61981c149f6071414a3492bb5ecbc4eccce6dd8 Mon Sep 17 00:00:00 2001 From: AlexanderJuestel <45469915+AlexanderJuestel@users.noreply.github.com> Date: Thu, 29 Dec 2022 20:29:29 +0100 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 42639b8a..213a7016 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = 'Alexander Juestel' # The full version, including alpha/beta/rc tags -release = '1.0.2' +release = '1.0.3' # -- GemGIS configuration --------------------------------------------------- sys.path.append('../../gemgis') diff --git a/gemgis/__init__.py b/gemgis/__init__.py index 831695fc..0b384274 100644 --- a/gemgis/__init__.py +++ b/gemgis/__init__.py @@ -20,9 +20,9 @@ __version_date__ = '2022-12-29' -__version__ = '1.0.2' +__version__ = '1.0.3' -__changelog__ = """What is new in version 1.0.2: +__changelog__ = """What is new in version 1.0.3: - Minor bug fixes diff --git a/setup.py b/setup.py index b37255bb..2a03e180 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages from os import path -version = '1.0.2' +version = '1.0.3' # Loading Readme for Description on PyPi this_directory = path.abspath(path.dirname(__file__))