diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-10-10 21:13:55 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-10-10 21:13:55 -0700 |
commit | 749e5f1279d300c18d5ae264438d974289dafe2a (patch) | |
tree | 52c6eb26bdae58249cdf2584209d23ab5c7fe54b | |
parent | afc9a17d359b25b8636ffa535ffe2a1cb1fbba01 (diff) |
Bump to 0.28.1, update changelog.
-rwxr-xr-x | CMakeLists.txt | 2 | ||||
-rw-r--r-- | changelog.txt | 15 |
2 files changed, 15 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 90a0f34..a068cfb 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 0) +set(PROJECT_VERSION_PATCH 1) 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 e51acec..1fee442 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,17 @@ -[0.28] +[0.28.1] + + * `--smart`: open quote can never occur right after `]` or `)` (#227). + * Fix quadratic behavior in `finalize` (Vicent Marti). + * Don't use `CMAKE_INSTALL_LIBDIR` to create `libcmark.pc` (#236). + This wasn't getting set in processing `libcmark.pc.in`, and we + were getting the wrong entry in `libcmark.pc`. + The new approach sets an internal `libdir` variable to + `lib${LIB_SUFFIX}`. This variable is used both to set the + install destination and in the libcmark.pc.in template. + * Update README.md, replace `make astyle` with `make format` + (Nguyễn Thái Ngọc Duy). + +[0.28.0] * Update spec. * Use unsigned integer when shifting (Phil Turnbull). |