From 9bda211d8acc531c83cfcd7d9e2481d91159a4b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=8Anio=20Viana?= Date: Sat, 22 Apr 2023 10:30:51 -0300 Subject: [PATCH] Backend modifications to run properly auto publish and readthedocs --- HISTORY.rst | 5 +++++ bdgd_tools/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8f385a9..ba215db 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +1.0.1(2023-04-22) +------------------ + +* Backend modifications to run properly auto publish and readthedocs. + 1.0.0(2023-03-22) ------------------ diff --git a/bdgd_tools/__init__.py b/bdgd_tools/__init__.py index 9ca2bbc..ecc45d7 100644 --- a/bdgd_tools/__init__.py +++ b/bdgd_tools/__init__.py @@ -1,7 +1,7 @@ """Top-level package for bdgd-tools.""" __author__ = """Ênio Rodrigues""" __email__ = 'eniocc@gmail.com' -__version__ = '1.0.0' +__version__ = '1.0.1' from bdgd_tools.sample.Sample import * from bdgd_tools.model.Converter import * diff --git a/setup.py b/setup.py index cb5fd88..2db62a0 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/eniocc/bdgd_tools', - version='1.0.0', + version='1.0.1', zip_safe=False, )