From f7a27f9b69f352336165e06a084cc21e564e3b86 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Mon, 12 Aug 2024 17:57:53 +0200 Subject: [PATCH] REL: set version to 1.7.0 --- meson.build | 2 +- pyproject.toml | 2 +- util/version_utils.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index cce4725da..63c12d223 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'PyWavelets', 'c', 'cython', - version: '1.7.0.dev0', + version: '1.7.0', license: 'MIT', meson_version: '>= 1.1.0', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index 6109b33a5..eb6a5f357 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ requires = [ [project] name = "PyWavelets" -version = "1.7.0.dev0" +version = "1.7.0" # 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"} diff --git a/util/version_utils.py b/util/version_utils.py index 3cad9b86b..75a643e64 100644 --- a/util/version_utils.py +++ b/util/version_utils.py @@ -5,7 +5,7 @@ MAJOR = 1 MINOR = 7 MICRO = 0 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)