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 1
1
# Change Log
2
2
3
- ## [ Unreleased ]
3
+ ## [ Version 1.1.10 ] - 2017-03-27
4
4
5
5
### Changed
6
6
7
7
- Updated the ` cloc.pl ` script to version 1.72
8
8
- 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 )
9
11
10
12
## [ Version 1.1.9] - 2017-02-16
11
13
315
317
316
318
## v1.0.0 - 2014-09-30 [ YANKED]
317
319
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
319
322
[ Version 1.1.9 ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.8...v1.1.9
320
323
[ Version 1.1.8 ] : https://github.com/PCMSolver/pcmsolver/compare/v1.1.7...v1.1.8
321
324
[ 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.
15
15
- [ Documentation] ( http://pcmsolver.readthedocs.io )
16
16
- [ Build and test history] ( https://travis-ci.org/PCMSolver/pcmsolver/builds )
17
17
- [ Nightly build dashboard] ( https://testboard.org/cdash/index.php?project=PCMSolver )
18
- - Version 1.1.9 available
18
+ - Version 1.1.10 available
19
19
- Licensed under [ LGPLv3] ( LICENSE )
20
20
- CMake infrastructure managed * via* [ Autocmake] ( http://autocmake.readthedocs.io/ )
21
21
Original file line number Diff line number Diff line change 1
1
file (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} )
3
4
string (REPLACE "." ";" _version_list ${_version_string} )
4
5
list (GET _version_list 0 PROJECT_VERSION_MAJOR)
5
6
list (GET _version_list 1 PROJECT_VERSION_MINOR)
6
7
list (GET _version_list 2 PROJECT_VERSION_PATCH)
7
8
8
9
set (${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 1
1
@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
3
3
Polarizable Continuum Model electrostatic problem, written by R.~Di~Remigio, L.~Frediani and K.~Mozgawa
4
4
with contributions from R.~Bast, J.~Juselius and V.~Weijo
5
5
(see http://pcmsolver.readthedocs.io/)"
You can’t perform that action at this time.
0 commit comments