diff --git a/CHANGELOG.md b/CHANGELOG.md index cdd0409e..e78d7a6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.0.1] - Ori - 2016-07-18 +### Fixed +- Experimental builders will no longer change meaning of AST tokens ([#134]). + ## [1.0.0] - The Lich King - 2016-07-13 ### Added - The Blackhole is completely rewritten from the scratch, there is no need to duplicate README here. @@ -259,6 +263,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). [#67]: (https://github.com/3Hren/blackhole/issues/67) [#68]: (https://github.com/3Hren/blackhole/issues/68) [#78]: (https://github.com/3Hren/blackhole/issues/78) +[#134]: (https://github.com/3Hren/blackhole/issues/134) [#38]: (https://github.com/3Hren/blackhole/pull/38) [#40]: (https://github.com/3Hren/blackhole/pull/40) diff --git a/CMakeLists.txt b/CMakeLists.txt index 99cb22a9..eb750da8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -124,7 +124,7 @@ target_link_libraries(${LIBRARY_NAME} # So, adding e.g. functions is no problem, modifying argument lists or removing functions would # required the SOVERSION to be incremented. Similar rules hold of course for non-opaque # data-structures. -set_target_properties(${LIBRARY_NAME} PROPERTIES VERSION 1.0.0) +set_target_properties(${LIBRARY_NAME} PROPERTIES VERSION 1.0.1) set_target_properties(${LIBRARY_NAME} PROPERTIES SOVERSION 1) if (ENABLE_TESTING_THREADSAFETY) diff --git a/debian/changelog b/debian/changelog index c20146f6..2dde6088 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +blackhole (1.0.1-1) unstable; urgency=low + + * Bug fix: experimental builders will no longer change meaning of AST + tokens (#134). + + -- Evgeny Safronov Mon, 18 Jul 2016 16:31:02 +0300 + blackhole (1.0.0-1) unstable; urgency=low * Feature: records can now provide an information whether they were activated.