Skip to content

Commit d22e731

Browse files
committed
REL: set version to 1.6.0rc1
1 parent 9396823 commit d22e731

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.6.0.dev0',
4+
version: '1.6.0rc1',
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
@@ -24,7 +24,7 @@ requires = [
2424

2525
[project]
2626
name = "PyWavelets"
27-
version = "1.6.0.dev0"
27+
version = "1.6.0rc1"
2828
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
2929
# at that point, no longer include them in `py3.install_sources()`
3030
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 = 6
77
MICRO = 0
8-
ISRELEASED = False
8+
ISRELEASED = True
99
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1010

1111

0 commit comments

Comments
 (0)