From 2738688ad101ba16fd0e66d17639e6d91100ccfd Mon Sep 17 00:00:00 2001 From: Lindon Roberts Date: Mon, 15 Apr 2024 15:27:20 +1000 Subject: [PATCH] Increment version number --- meson.build | 2 +- trustregion/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 86024ad..ed53581 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ # $ python -m numpy.f2py *.f90 -m _trs # to enable the build to work propertly -project('trustregion', 'c', version: '1.2', default_options: ['c_std=c99', 'fortran_std=legacy']) +project('trustregion', 'c', version: '1.2.1', default_options: ['c_std=c99', 'fortran_std=legacy']) add_languages('fortran', native: false) diff --git a/trustregion/__init__.py b/trustregion/__init__.py index 7f6a0e3..6357add 100644 --- a/trustregion/__init__.py +++ b/trustregion/__init__.py @@ -1,7 +1,7 @@ # Ensure compatibility with Python 2 from __future__ import absolute_import, division, print_function, unicode_literals -__version__ = '1.2' +__version__ = '1.2.1' from .interface import solve __all__ = ['solve'] \ No newline at end of file