diff --git a/CHANGELOG.md b/CHANGELOG.md index 790b8abadd3c13be18c3fd4f022f9e0db0a446ff..a35f9f2e497a96bec0673a7506ad694302484fb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] ## + +### Added ### + +### Changed ### + +### Deprecated ### + +### Removed ### + +### Fixed ### + +### Security ### + +### Documentation ### + ## [0.18.0] - 2025-05-27 ## ### Added ### diff --git a/setup.py b/setup.py index 9047cbd0ff2d65a37a9a317229c6349d50a39968..86f6ffc845adc103195b3f09e6320cbc16f57779 100755 --- a/setup.py +++ b/setup.py @@ -46,10 +46,10 @@ from setuptools import find_packages, setup # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ######################################################################## -ISRELEASED = True +ISRELEASED = False MAJOR = 0 MINOR = 18 -MICRO = 0 +MICRO = 1 # Do not tag as pre-release until this commit # https://github.com/pypa/packaging/pull/515 # has made it into a release. Probably we should wait for pypa/packaging>=21.4 diff --git a/src/doc/conf.py b/src/doc/conf.py index 46c1645c0117df75ec276c1328a423fb29e722fe..05e1240482db6ca5f741bd8c3c8c91fc782bc97d 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -29,10 +29,10 @@ copyright = '2024, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '0.18.0' +version = '0.18.1' # The full version, including alpha/beta/rc tags # release = '0.5.2-rc2' -release = '0.18.0' +release = '0.18.1-dev' # -- General configuration ---------------------------------------------------