File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
88
99### Fixed
1010
11+ ## [ 2.11.2] - 2017-04-10
12+
13+ ### Fixed
14+
15+ - Use minimum size of 64 bytes for buffers. This fixes an infinite loop
16+ when buffer size is zero.
17+
1118
1219## [ 2.11.1] - 2017-03-07
1320
@@ -531,7 +538,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
531538 Doxygen (up to version 1.8.8). This version contains a workaround to fix
532539 this.
533540
534- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.11.1...HEAD
541+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.11.2...HEAD
542+ [ 2.11.2 ] : https://github.com/osmcode/libosmium/compare/v2.11.1...v2.11.2
535543[ 2.11.1 ] : https://github.com/osmcode/libosmium/compare/v2.11.0...v2.11.1
536544[ 2.11.0 ] : https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0
537545[ 2.10.3 ] : https://github.com/osmcode/libosmium/compare/v2.10.2...v2.10.3
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ project(libosmium)
2525
2626set (LIBOSMIUM_VERSION_MAJOR 2)
2727set (LIBOSMIUM_VERSION_MINOR 11)
28- set (LIBOSMIUM_VERSION_PATCH 1 )
28+ set (LIBOSMIUM_VERSION_PATCH 2 )
2929
3030set (LIBOSMIUM_VERSION
3131 "${LIBOSMIUM_VERSION_MAJOR} .${LIBOSMIUM_VERSION_MINOR} .${LIBOSMIUM_VERSION_PATCH} " )
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE.
3535
3636#define LIBOSMIUM_VERSION_MAJOR 2
3737#define LIBOSMIUM_VERSION_MINOR 11
38- #define LIBOSMIUM_VERSION_PATCH 1
38+ #define LIBOSMIUM_VERSION_PATCH 2
3939
40- #define LIBOSMIUM_VERSION_STRING " 2.11.1 "
40+ #define LIBOSMIUM_VERSION_STRING " 2.11.2 "
4141
4242#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments