Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
lindonroberts committed Apr 15, 2024
1 parent dcb2637 commit 2738688
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion trustregion/__init__.py
Original file line number Diff line number Diff line change
@@ -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']

0 comments on commit 2738688

Please sign in to comment.