diff --git a/setup.py b/setup.py index 11b734b692e7dd29e853cd50fa7456530085253a..187b04f01773280c42711c1a4b80f5eddc91eae1 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 = False +ISRELEASED = True MAJOR = 0 -MINOR = 9 -MICRO = 1 +MINOR = 10 +MICRO = 0 # 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 0c1cab805572aa0a548c5f674d0db531be7a0f5c..8f3dfbdbdf80307b8bd68c068360aca4b7e7a2c7 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.9.0' +version = '0.10.0' # The full version, including alpha/beta/rc tags # release = '0.5.2-rc2' -release = '0.9.1-dev' +release = '0.10.0' # -- General configuration ---------------------------------------------------