Skip to content

Commit

Permalink
REL: set version to 1.8.0.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Aug 12, 2024
1 parent f7a27f9 commit 43a662c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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: [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
4 changes: 2 additions & 2 deletions util/version_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 43a662c

Please sign in to comment.