Skip to content

Commit ecf848f

Browse files
authored
Prep for v2.7.1 (#662)
1 parent bddd07d commit ecf848f

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
cff-version: 2.7.0
1+
cff-version: 2.7.1
22
message: "If you use this software, please cite it as below."
33
authors:
44
- family-names: "Vanaret"
55
given-names: "Charlie"
66
orcid: "https://orcid.org/0000-0002-1131-7631"
77
title: "Uno"
8-
version: 2.7.0
8+
version: 2.7.1
99
url: "https://github.com/cvanaret/Uno"
1010
preferred-citation:
1111
type: unpublished

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.12)
88
######################
99

1010
# define the project
11-
project(Uno VERSION 2.7.0
11+
project(Uno VERSION 2.7.1
1212
DESCRIPTION "Uno (Unifying Nonlinear Optimization)"
1313
LANGUAGES C CXX)
1414
set(CMAKE_CXX_STANDARD 17)

docs/figures/logo.png

-1.77 KB
Loading

interfaces/C/Uno_C_API.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ extern "C" {
6060
// current Uno version
6161
const uno_int UNO_VERSION_MAJOR = 2;
6262
const uno_int UNO_VERSION_MINOR = 7;
63-
const uno_int UNO_VERSION_PATCH = 0;
63+
const uno_int UNO_VERSION_PATCH = 1;
6464

6565
// - takes as inputs a vector "x" of size "number_variables" and an object "user_data", and
6666
// stores the objective value of "x" in "objective_value".

interfaces/Fortran/uno_c.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
!---------------------------------------------
7979
integer(uno_int), parameter :: UNO_VERSION_MAJOR = 2
8080
integer(uno_int), parameter :: UNO_VERSION_MINOR = 7
81-
integer(uno_int), parameter :: UNO_VERSION_PATCH = 0
81+
integer(uno_int), parameter :: UNO_VERSION_PATCH = 1
8282

8383
!---------------------------------------------
8484
! uno_objective_callback

0 commit comments

Comments
 (0)