Skip to content

Commit 3e1cd8e

Browse files
committed
REL: set version to 1.5.0
1 parent 5c2b071 commit 3e1cd8e

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

meson.build

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'PyWavelets',
33
'c', 'cython',
4-
version: '1.5.0.dev0',
4+
version: '1.5.0',
55
license: 'MIT',
66
meson_version: '>= 1.1.0',
77
default_options: [
@@ -13,9 +13,7 @@ project(
1313

1414
cython = find_program('cython')
1515

16-
# https://mesonbuild.com/Python-module.html
17-
py_mod = import('python')
18-
py = py_mod.find_installation(pure: false)
16+
py = import('python').find_installation(pure: false)
1917
py_dep = py.dependency()
2018

2119
subdir('pywt')

pyproject.toml

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

2929
[project]
3030
name = "PyWavelets"
31-
version = "1.5.0.dev0"
31+
version = "1.5.0"
3232
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
3333
# at that point, no longer include them in `py3.install_sources()`
3434
license = {file = "LICENSE"}

util/version_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
MAJOR = 1
77
MINOR = 5
88
MICRO = 0
9-
ISRELEASED = False
10-
IS_RELEASE_BRANCH = False
9+
ISRELEASED = True
1110
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1211

1312

0 commit comments

Comments
 (0)