Skip to content

Commit

Permalink
Bump to 0.28.1, update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Oct 11, 2017
1 parent afc9a17 commit 749e5f1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
15 changes: 14 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -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).
Expand Down

0 comments on commit 749e5f1

Please sign in to comment.