File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed
Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3- ## [ Unreleased ]
3+ ## [ Version 1.1.10 ] - 2017-03-27
44
55### Changed
66
77- Updated the ` cloc.pl ` script to version 1.72
88- Simplified the internal structure of the ` Meddle ` and ` Input ` objects.
9+ - Export dependency on Zlib for the static libraries. Thanks @loriab for the pull request
10+ fixing [ a build problem within Psi4] ( http://forum.psicode.org/t/crc32-undefined-symbol-at-runtime-when-built-with-pcmsolver-gcc-4-9-4/449/7 )
911
1012## [ Version 1.1.9] - 2017-02-16
1113
315317
316318## v1.0.0 - 2014-09-30 [ YANKED]
317319
318- [ Unreleased ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.9...HEAD
320+ [ Unreleased ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.10...HEAD
321+ [ Version 1.1.10 ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.9...v1.1.10
319322[ Version 1.1.9 ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.8...v1.1.9
320323[ Version 1.1.8 ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.7...v1.1.8
321324[ Version 1.1.7 ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.6...v1.1.7
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ An API for the Polarizable Continuum Model.
1515- [ Documentation] ( http://pcmsolver.readthedocs.io )
1616- [ Build and test history] ( https://travis-ci.org/PCMSolver/pcmsolver/builds )
1717- [ Nightly build dashboard] ( https://testboard.org/cdash/index.php?project=PCMSolver )
18- - Version 1.1.9 available
18+ - Version 1.1.10 available
1919- Licensed under [ LGPLv3] ( LICENSE )
2020- CMake infrastructure managed * via* [ Autocmake] ( http://autocmake.readthedocs.io/ )
2121
Original file line number Diff line number Diff line change 11file (READ ${PROJECT_SOURCE_DIR} /README.md _readme)
2- string (REGEX MATCH "[0-9]\\ .[0-9]\\ .[0-9]" _version_string ${_readme} )
2+ #string(REGEX MATCH "[0-9]\\.[0-9]\\.[0-9]" _version_string ${_readme})
3+ string (REGEX MATCH "([0-9]+)\\ .([0-9]+)\\ .([0-9]+)" _version_string ${_readme} )
34string (REPLACE "." ";" _version_list ${_version_string} )
45list (GET _version_list 0 PROJECT_VERSION_MAJOR)
56list (GET _version_list 1 PROJECT_VERSION_MINOR)
67list (GET _version_list 2 PROJECT_VERSION_PATCH)
78
89set (${PROJECT_NAME} _VERSION ${PROJECT_VERSION_MAJOR} .${PROJECT_VERSION_MINOR} .${PROJECT_VERSION_PATCH} )
9- message (STATUS "PCMSolver v${${PROJECT_NAME} _VERSION}" )
10+ message (STATUS "${BoldGreen} PCMSolver v${${PROJECT_NAME} _VERSION} ${ColourReset } " )
Original file line number Diff line number Diff line change 11@misc {PCMSolver ,
2- note = { \texttt{PCMSolver}, v1.1.9 an Application Programming Interface for the
2+ note = { \texttt{PCMSolver}, v1.1.10 an Application Programming Interface for the
33 Polarizable Continuum Model electrostatic problem, written by R.~Di~Remigio, L.~Frediani and K.~Mozgawa
44 with contributions from R.~Bast, J.~Juselius and V.~Weijo
55 (see http://pcmsolver.readthedocs.io/)"
You can’t perform that action at this time.
0 commit comments