diff --git a/CHANGELOG.md b/CHANGELOG.md index f3f29f875aae54312cd6ddd890604e185d02de02..3ec4a545a24572aca782ac94846749cd234760e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,24 @@ 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.10.0] - 2022-11-14 +(Florian Spreckelsen) ### Added ### diff --git a/setup.py b/setup.py index 187b04f01773280c42711c1a4b80f5eddc91eae1..35d6d69a83338a0dc543b4b6438b56c1372b7237 100755 --- a/setup.py +++ b/setup.py @@ -45,10 +45,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 = 10 -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 8f3dfbdbdf80307b8bd68c068360aca4b7e7a2c7..15fa844e546a40efa99f577944c377f0a6a0c19a 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -29,10 +29,10 @@ copyright = '2022, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '0.10.0' +version = '0.10.1' # The full version, including alpha/beta/rc tags # release = '0.5.2-rc2' -release = '0.10.0' +release = '0.10.1-dev' # -- General configuration ---------------------------------------------------