Skip to content

Commit c7bca20

Browse files
committed
REL: set version to 1.9.0
1 parent 9f6bffd commit c7bca20

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.9.0.dev0',
4+
version: '1.9.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
@@ -23,7 +23,7 @@ requires = [
2323

2424
[project]
2525
name = "PyWavelets"
26-
version = "1.9.0.dev0"
26+
version = "1.9.0"
2727
license = "MIT and BSD-3-Clause"
2828
license-files = [
2929
"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 = 8
77
MICRO = 0
8-
ISRELEASED = False
8+
ISRELEASED = True
99
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1010

1111

0 commit comments

Comments
 (0)