File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
### Fixed
10
10
11
+ ## [ 2.11.3] - 2017-05-03
12
+
13
+ ### Fixed
14
+
15
+ - Two bugs in area assembler affecting very complex multipolygons and
16
+ multipolygons with overlapping or nearly overlapping lines.
17
+ - Invalid use of iterators leading to undefined behaviour in area assembler
18
+ code.
19
+ - Read OPL file correctly even if trailing newline in file is missing.
20
+
21
+
11
22
## [ 2.11.2] - 2017-04-10
12
23
13
24
### Fixed
@@ -538,7 +549,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
538
549
Doxygen (up to version 1.8.8). This version contains a workaround to fix
539
550
this.
540
551
541
- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.11.2...HEAD
552
+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v2.11.3...HEAD
553
+ [ 2.11.3 ] : https://github.com/osmcode/libosmium/compare/v2.11.2...v2.11.3
542
554
[ 2.11.2 ] : https://github.com/osmcode/libosmium/compare/v2.11.1...v2.11.2
543
555
[ 2.11.1 ] : https://github.com/osmcode/libosmium/compare/v2.11.0...v2.11.1
544
556
[ 2.11.0 ] : https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ project(libosmium)
25
25
26
26
set (LIBOSMIUM_VERSION_MAJOR 2)
27
27
set (LIBOSMIUM_VERSION_MINOR 11)
28
- set (LIBOSMIUM_VERSION_PATCH 2 )
28
+ set (LIBOSMIUM_VERSION_PATCH 3 )
29
29
30
30
set (LIBOSMIUM_VERSION
31
31
"${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.
35
35
36
36
#define LIBOSMIUM_VERSION_MAJOR 2
37
37
#define LIBOSMIUM_VERSION_MINOR 11
38
- #define LIBOSMIUM_VERSION_PATCH 2
38
+ #define LIBOSMIUM_VERSION_PATCH 3
39
39
40
- #define LIBOSMIUM_VERSION_STRING " 2.11.2 "
40
+ #define LIBOSMIUM_VERSION_STRING " 2.11.3 "
41
41
42
42
#endif // OSMIUM_VERSION_HPP
You can’t perform that action at this time.
0 commit comments