From 81a4fe1d773ba41108bc2dc2743c02bde7e4e861 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Wed, 4 Dec 2024 17:17:21 +0100 Subject: [PATCH] REL: set version to 1.8.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 1010af3d..dae7cb88 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'PyWavelets', 'c', 'cython', - version: '1.8.0.dev0', + version: '1.8.0', license: 'MIT', meson_version: '>= 1.1.0', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index 3c1a6ecb..20902ae5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ requires = [ [project] name = "PyWavelets" -version = "1.8.0.dev0" +version = "1.8.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 ef6f4507..a3f4ba0e 100644 --- a/util/version_utils.py +++ b/util/version_utils.py @@ -5,7 +5,7 @@ MAJOR = 1 MINOR = 8 MICRO = 0 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)