diff --git a/meson.build b/meson.build index 63c12d22..1010af3d 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'PyWavelets', 'c', 'cython', - version: '1.7.0', + version: '1.8.0.dev0', license: 'MIT', meson_version: '>= 1.1.0', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index eb6a5f35..4326ffa9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ requires = [ [project] name = "PyWavelets" -version = "1.7.0" +version = "1.8.0.dev0" # TODO: add `license-files` once PEP 639 is accepted (see meson-python#88) # at that point, no longer include them in `py3.install_sources()` license = {file = "LICENSE"} diff --git a/util/version_utils.py b/util/version_utils.py index 75a643e6..ef6f4507 100644 --- a/util/version_utils.py +++ b/util/version_utils.py @@ -3,9 +3,9 @@ import subprocess MAJOR = 1 -MINOR = 7 +MINOR = 8 MICRO = 0 -ISRELEASED = True +ISRELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)