From 513b35d243920d618689a19b0bfae2c5a42ae088 Mon Sep 17 00:00:00 2001 From: joaomcteixeira Date: Mon, 29 Jan 2024 16:18:46 +0000 Subject: [PATCH] [SKIP] version bump 0.7.18 -> 0.7.19 Merge pull request #267 from menoliu/fix-docs Fix `docs` workflow bug --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 3 +++ README.rst | 2 +- docs/conf.py | 2 +- setup.py | 2 +- src/idpconfgen/__init__.py | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bce795f6..8a796c3d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.18 +current_version = 0.7.19 commit = True message = [SKIP] version bump {current_version} -> {new_version} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 802860bd..270fcee1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,9 @@ While in version ``0``, minor and patch upgrades converge in the ``patch`` numbe Changelog ========= +v0.7.19 (2024-01-29) +------------------------------------------------------------ + * Update Sphinx requirement to v5 to fix ``docs`` workflow and ``tox`` error v0.7.18 (2024-01-25) diff --git a/README.rst b/README.rst index dee81e89..59a84221 100644 --- a/README.rst +++ b/README.rst @@ -67,4 +67,4 @@ If you use the Local Disordered Region Sampling (LDRS) module, please also cite: Version ------- -v0.7.18 +v0.7.19 diff --git a/docs/conf.py b/docs/conf.py index 7b85031d..d358298a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ year = '2022' author = 'Julie Forman-Kay Lab' copyright = '{0}, {1}'.format(year, author) -version = release = '0.7.18' +version = release = '0.7.19' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 6a30a910..7d9a8daf 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def read(*names, **kwargs): setup( name='idpconfgen', - version='0.7.18', + version='0.7.19', description='Generates IDP conformers.', long_description=long_description, author='Julie Forman-Kay Lab', diff --git a/src/idpconfgen/__init__.py b/src/idpconfgen/__init__.py index 7ea3e144..b245bd8d 100644 --- a/src/idpconfgen/__init__.py +++ b/src/idpconfgen/__init__.py @@ -67,4 +67,4 @@ def assert_subclass(objs, subclass): source_folder = Path(__file__).absparent -__version__ = '0.7.18' +__version__ = '0.7.19'