From 4fc04b59927d134632c9eda5ee9f5efa75c2b363 Mon Sep 17 00:00:00 2001 From: jchristopherson Date: Tue, 12 Sep 2017 08:08:27 -0500 Subject: [PATCH 1/3] Update gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 127e8bf..1dab04c 100644 --- a/.gitignore +++ b/.gitignore @@ -36,6 +36,7 @@ bin/ build/ html/ latex/ +lib/ # CMake Stuff *.json From deeb62ead667acca809fcbbb5cb9a94a836b3db8 Mon Sep 17 00:00:00 2001 From: jchristopherson Date: Tue, 12 Sep 2017 08:09:55 -0500 Subject: [PATCH 2/3] Update documentation --- doc/Doxyfile | 2 +- doc/refman.pdf | Bin 113630 -> 113630 bytes src/ferror.f90 | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Doxyfile b/doc/Doxyfile index ad074a3..6a9767b 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = ferror # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.2.2 +PROJECT_NUMBER = 1.2.3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/doc/refman.pdf b/doc/refman.pdf index ddb7b799b92a30bf93a98a1d4f291b5ebb267155..ad543385cbd599e931dd54fb0777a2d77044ca59 100644 GIT binary patch delta 262 zcmccjo$cOtwh3Fz)^1LyaS_*%aL?$Bu0G?fH_OxZUgagXwgvN|JaT>KUz_#)=CeH} z$@Z)>U+&iTi zFQd=Ntd3Zk7-zXEyZJ`))JDnQb~d+u_wHEvNPc;LNmlb!mhD$r7}HnkSQ;7`SQuCu zo9h~wsv8)nYjWxP=BKzMmZU0ZxL6q(7@8Zvm2A&g$M}TZ+1bq0(ZImT&Dqk?$<)}` gz{J(m(#_n_(9zh@%*@%%!cM`4kdp2F+Zg>>0e}l*M*si- delta 262 zcmccjo$cOtwh3Fzu0$HxE#emIQQmT7t?e^a@v}?h-rHm+m1X-?7RL0IIu-_&h8D)= zre?YZrs@U;>Y7~ozWFIGi6yBD8ZK5w28QMaa3$L_)-gU|cXl*0Fm*DuFtac>Ffn&C hFm`lucD8VHF?Muwb9HjFG_+H&A*5t`|29T{RsgcYWp)4n diff --git a/src/ferror.f90 b/src/ferror.f90 index e4f6559..388428a 100644 --- a/src/ferror.f90 +++ b/src/ferror.f90 @@ -6,7 +6,7 @@ !! FERROR is a library to assist with error handling in Fortran projects. !! !! @author Jason Christopherson -!! @version 1.2.2 +!! @version 1.2.3 !> @brief \b ferror !! From ad40f03e3a8bff7f66fa5cc39f611516c1d40499 Mon Sep 17 00:00:00 2001 From: jchristopherson Date: Tue, 12 Sep 2017 08:36:29 -0500 Subject: [PATCH 3/3] Update version info --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a01dfc..62b2a1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(ferror C CXX Fortran) # Define version information set(linalg_VERSION_MAJOR 1) set(linalg_VERSION_MINOR 2) -set(linalg_VERSION_PATCH 2) +set(linalg_VERSION_PATCH 3) # Define output directories, if undefined if (NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY)