Release 0.6.0
This commit is contained in:
parent
7c675a6fdb
commit
1afe18b429
5 changed files with 8 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
unreleased
|
0.6.0 - 2023-01-29
|
||||||
----------
|
------------------
|
||||||
|
|
||||||
* add development documentation in development.rst
|
* add development documentation in development.rst
|
||||||
* use tox as test runner
|
* use tox as test runner
|
||||||
|
|
|
@ -20,7 +20,7 @@ Start by deciding the new release number and perform the following steps:
|
||||||
|
|
||||||
* update CHANGES.rst
|
* update CHANGES.rst
|
||||||
* change ``version`` in setup.cfg
|
* 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
|
* change ``version`` in tests/root/conf.py
|
||||||
* commit and push your changes ::
|
* commit and push your changes ::
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
|
|
||||||
The IP domain.
|
The IP domain.
|
||||||
|
|
||||||
:copyright: Copyright (c) 2016-2021 Jan Dittberner
|
:copyright: Copyright (c) Jan Dittberner
|
||||||
:license: GPLv3+, see COPYING file for details.
|
:license: GPLv3+, see COPYING file for details.
|
||||||
"""
|
"""
|
||||||
__version__ = "0.5.1"
|
__version__ = "0.6.0"
|
||||||
|
|
||||||
import ipaddress
|
import ipaddress
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
|
@ -17,7 +17,7 @@ keywords = sphinx, extension, IP
|
||||||
license = GPLv3+
|
license = GPLv3+
|
||||||
license_files = COPYING
|
license_files = COPYING
|
||||||
platforms = any
|
platforms = any
|
||||||
version = 0.5.1
|
version = 0.6.0
|
||||||
classifiers =
|
classifiers =
|
||||||
Development Status :: 5 - Production/Stable
|
Development Status :: 5 - Production/Stable
|
||||||
Framework :: Sphinx :: Extension
|
Framework :: Sphinx :: Extension
|
||||||
|
@ -29,6 +29,6 @@ classifiers =
|
||||||
[options]
|
[options]
|
||||||
zip_safe = False
|
zip_safe = False
|
||||||
include_package_data = True
|
include_package_data = True
|
||||||
packages = find:
|
packages = find_namespace:
|
||||||
install_requires =
|
install_requires =
|
||||||
Sphinx >= 5
|
Sphinx >= 5
|
||||||
|
|
|
@ -55,7 +55,7 @@ author = "Jan Dittberner"
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = "0.5.1"
|
version = "0.6.0"
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = version
|
release = version
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue