Skip to content

Commit

Permalink
REL: set version to 1.6.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Mar 14, 2024
1 parent 9396823 commit d22e731
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.6.0.dev0',
version: '1.6.0rc1',
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 @@ -24,7 +24,7 @@ requires = [

[project]
name = "PyWavelets"
version = "1.6.0.dev0"
version = "1.6.0rc1"
# 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
2 changes: 1 addition & 1 deletion util/version_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
MAJOR = 1
MINOR = 6
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


Expand Down

0 comments on commit d22e731

Please sign in to comment.