From 1afe18b4299214378fa62d5b6d2e4ea7a30d9d29 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sun, 29 Jan 2023 17:34:21 +0100 Subject: [PATCH] Release 0.6.0 --- CHANGES.rst | 4 ++-- DEVELOPMENT.rst | 2 +- jandd/sphinxext/ip/__init__.py | 4 ++-- setup.cfg | 4 ++-- tests/root/conf.py | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index aba554e..0e6795c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,8 @@ Changes ======= -unreleased ----------- +0.6.0 - 2023-01-29 +------------------ * add development documentation in development.rst * use tox as test runner diff --git a/DEVELOPMENT.rst b/DEVELOPMENT.rst index 36f4c37..1bd8fdc 100644 --- a/DEVELOPMENT.rst +++ b/DEVELOPMENT.rst @@ -20,7 +20,7 @@ Start by deciding the new release number and perform the following steps: * update CHANGES.rst * change ``version`` in setup.cfg -* change ``__version__`` in jandd/sphinxext/ip.rst +* change ``__version__`` in jandd/sphinxext/ip/__init__.rst * change ``version`` in tests/root/conf.py * commit and push your changes :: diff --git a/jandd/sphinxext/ip/__init__.py b/jandd/sphinxext/ip/__init__.py index be0d62e..eadb968 100644 --- a/jandd/sphinxext/ip/__init__.py +++ b/jandd/sphinxext/ip/__init__.py @@ -5,10 +5,10 @@ The IP domain. - :copyright: Copyright (c) 2016-2021 Jan Dittberner + :copyright: Copyright (c) Jan Dittberner :license: GPLv3+, see COPYING file for details. """ -__version__ = "0.5.1" +__version__ = "0.6.0" import ipaddress from collections import defaultdict diff --git a/setup.cfg b/setup.cfg index 84a318b..decfe80 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,7 +17,7 @@ keywords = sphinx, extension, IP license = GPLv3+ license_files = COPYING platforms = any -version = 0.5.1 +version = 0.6.0 classifiers = Development Status :: 5 - Production/Stable Framework :: Sphinx :: Extension @@ -29,6 +29,6 @@ classifiers = [options] zip_safe = False include_package_data = True -packages = find: +packages = find_namespace: install_requires = Sphinx >= 5 diff --git a/tests/root/conf.py b/tests/root/conf.py index 45af363..27fb8cc 100644 --- a/tests/root/conf.py +++ b/tests/root/conf.py @@ -55,7 +55,7 @@ author = "Jan Dittberner" # built documents. # # The short X.Y version. -version = "0.5.1" +version = "0.6.0" # The full version, including alpha/beta/rc tags. release = version