diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-12 08:00:06 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-12 08:00:06 -0700 |
commit | e97d8f3cd405970c74d44b0ded87b1954fe0f2ba (patch) | |
tree | c8482dce2dc50a59bfbc22e71d6f2cd303506a50 | |
parent | a54e12c9e5da809b425cc0f2c01d30953f4ab512 (diff) |
Bump to 0.28.2, update changelog.
-rwxr-xr-x | CMakeLists.txt | 2 | ||||
-rw-r--r-- | changelog.txt | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a068cfb..6147337 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ set(PROJECT_NAME "cmark") set(PROJECT_VERSION_MAJOR 0) set(PROJECT_VERSION_MINOR 28) -set(PROJECT_VERSION_PATCH 1) +set(PROJECT_VERSION_PATCH 2) set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH} ) option(CMARK_TESTS "Build cmark tests and enable testing" ON) diff --git a/changelog.txt b/changelog.txt index 1fee442..82f1063 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +[0.28.2] + + * Fixed regression in install dest for static library (#238). + Due to a mistake, 0.28.1 installed libcmark.a into include/. + [0.28.1] * `--smart`: open quote can never occur right after `]` or `)` (#227). |