Skip to content

Commit f7a27f9

Browse files
committed
REL: set version to 1.7.0
1 parent 96dfb33 commit f7a27f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

meson.build

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ requires = [
2222

2323
[project]
2424
name = "PyWavelets"
25-
version = "1.7.0.dev0"
25+
version = "1.7.0"
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MAJOR = 1
66
MINOR = 7
77
MICRO = 0
8-
ISRELEASED = False
8+
ISRELEASED = True
99
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1010

1111

0 commit comments

Comments
 (0)