Skip to content

Commit 5a5f9c3

Browse files
committed
Bump version to 1.1.10
1 parent a5e17c9 commit 5a5f9c3

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
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

@@ -315,7 +317,8 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

cmake/custom/version.cmake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
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})
34
string(REPLACE "." ";" _version_list ${_version_string})
45
list(GET _version_list 0 PROJECT_VERSION_MAJOR)
56
list(GET _version_list 1 PROJECT_VERSION_MINOR)
67
list(GET _version_list 2 PROJECT_VERSION_PATCH)
78

89
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}")

doc/snippets/citation.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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/)"

0 commit comments

Comments
 (0)