Update changelog and version

This commit is contained in:
vitaut 2016-04-11 15:13:36 -04:00
parent 6cfe43539a
commit 18c69c998d
2 changed files with 11 additions and 1 deletions

View File

@ -28,7 +28,7 @@ option(FMT_USE_CPP11 "Enable the addition of C++11 compiler flags." ON)
project(FORMAT)
# starting with cmake 3.0 VERSION is part of the project command
set(CPPFORMAT_VERSION 2.1.0)
set(CPPFORMAT_VERSION 2.1.1)
if (NOT CPPFORMAT_VERSION MATCHES "^([0-9]+).([0-9]+).([0-9]+)$")
message(FATAL_ERROR "Invalid version format ${CPPFORMAT_VERSION}.")
endif ()

View File

@ -1,3 +1,13 @@
2.1.1 - TBD
-----------
* The install location for generated CMake files is now configurable via
the ``FMT_CMAKE_DIR`` CMake variable
(`#299 <https://github.com/cppformat/cppformat/pull/299>`_).
Thanks to `@niosHD <https://github.com/niosHD>`_.
* Documentation fixes (`#252 <https://github.com/cppformat/cppformat/issues/252>`_).
2.1.0 - 2016-03-21
------------------