Skip to content

Commit 43a662c

Browse files
committed
REL: set version to 1.8.0.dev0
1 parent f7a27f9 commit 43a662c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'PyWavelets',
33
'c', 'cython',
4-
version: '1.7.0',
4+
version: '1.8.0.dev0',
55
license: 'MIT',
66
meson_version: '>= 1.1.0',
77
default_options: [

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ requires = [
2222

2323
[project]
2424
name = "PyWavelets"
25-
version = "1.7.0"
25+
version = "1.8.0.dev0"
2626
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
2727
# at that point, no longer include them in `py3.install_sources()`
2828
license = {file = "LICENSE"}

util/version_utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import subprocess
44

55
MAJOR = 1
6-
MINOR = 7
6+
MINOR = 8
77
MICRO = 0
8-
ISRELEASED = True
8+
ISRELEASED = False
99
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1010

1111

0 commit comments

Comments
 (0)