Skip to content

Commit

Permalink
Mongoose 3.3.0: version update
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Nov 28, 2023
1 parent 28704c5 commit be4fbde
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 deletions.
12 changes: 6 additions & 6 deletions Mongoose/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@

cmake_minimum_required ( VERSION 3.20 )

set ( Mongoose_DATE "Sept 18, 2023" )
set ( Mongoose_NUMERIC_DATE "2023-09-18" )
set ( Mongoose_DATE "Dec 30, 2023" )
set ( Mongoose_NUMERIC_DATE "2023-12-30" )
set ( Mongoose_VERSION_MAJOR 3 CACHE STRING "" FORCE )
set ( Mongoose_VERSION_MINOR 2 CACHE STRING "" FORCE )
set ( Mongoose_VERSION_PATCH 1 CACHE STRING "" FORCE )
set ( Mongoose_VERSION_MINOR 3 CACHE STRING "" FORCE )
set ( Mongoose_VERSION_PATCH 0 CACHE STRING "" FORCE )

message ( STATUS "Building Mongoose version: v"
${Mongoose_VERSION_MAJOR}.
Expand Down Expand Up @@ -69,10 +69,10 @@ include ( SuiteSparsePolicy )
#-------------------------------------------------------------------------------

if ( NOT SUITESPARSE_ROOT_CMAKELISTS )
find_package ( SuiteSparse_config 7.2.0
find_package ( SuiteSparse_config 7.4.0
PATHS ${CMAKE_SOURCE_DIR}/../SuiteSparse_config/build NO_DEFAULT_PATH )
if ( NOT TARGET SuiteSparse::SuiteSparseConfig )
find_package ( SuiteSparse_config 7.2.0 REQUIRED )
find_package ( SuiteSparse_config 7.4.0 REQUIRED )
endif ( )
endif ( )

Expand Down
4 changes: 4 additions & 0 deletions Mongoose/Doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Dec 30, 2023: version 3.3.0

* major change to build system: by Markus Mützel

Sept 18, 2023: version 3.2.1

* cmake update: add "None" build type, from Antonio Rojas, for Arch Linux
Expand Down
Binary file modified Mongoose/Doc/Mongoose_UserGuide.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions Mongoose/Doc/Mongoose_UserGuide.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\documentclass[letter]{article}
\batchmode
\usepackage{fancyhdr} % Required for custom headers
\usepackage{lastpage} % Required to determine the last page for the footer
\usepackage{extramarks} % Required for headers and footers
Expand Down
4 changes: 2 additions & 2 deletions Mongoose/Doc/title-info.tex
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
\title{Mongoose User Guide, Version 3.2.1}
\title{Mongoose User Guide, Version 3.3.0}
\author{Scott Kolodziej, Nuri Yeralan, Tim Davis, William W. Hager}
\date{Sept 18, 2023}
\date{Dec 30, 2023}
6 changes: 3 additions & 3 deletions Mongoose/Include/Mongoose.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

// Configuration information from CMake
#define Mongoose_VERSION_MAJOR 3
#define Mongoose_VERSION_MINOR 2
#define Mongoose_VERSION_PATCH 1
#define Mongoose_DATE "Sept 18, 2023"
#define Mongoose_VERSION_MINOR 3
#define Mongoose_VERSION_PATCH 0
#define Mongoose_DATE "Dec 30, 2023"

namespace Mongoose
{
Expand Down
8 changes: 4 additions & 4 deletions Mongoose/codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"codeRepository": "https://github.com/ScottKolo/Mongoose",
"issueTracker": "https://github.com/ScottKolo/Mongoose/issues",
"license": "https://spdx.org/licenses/GPL-3.0-only.html",
"version": "3.2.1",
"softwareVersion": "3.2.1",
"version": "3.3.0",
"softwareVersion": "3.3.0",
"author": [
{
"@type": "Person",
Expand Down Expand Up @@ -47,7 +47,7 @@
},
"contIntegration": "https://travis-ci.com/ScottKolo/Mongoose",
"developmentStatus": "active",
"downloadUrl": "https://github.com/ScottKolo/Mongoose/archive/v3.2.1.zip",
"downloadUrl": "https://github.com/ScottKolo/Mongoose/archive/v3.3.0.zip",
"funding":"Office of Naval Research grant N00014-11-1-0068",
"funding":"Office of Naval Research grant N00014-15-1-2048",
"funding":"Office of Naval Research grant N00014-18-1-2100",
Expand All @@ -66,7 +66,7 @@
],
"dateCreated":"2018-04-09",
"datePublished":"2018-05-25",
"dateModified":"2023-09-18",
"dateModified":"2023-12-30",
"programmingLanguage": "C++",
"programmingLanguage": "MATLAB"
}

0 comments on commit be4fbde

Please sign in to comment.