From 8e084b23df0c5b4a3d52fd156a407d947dad53d0 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sat, 9 Mar 2019 22:08:51 +0100 Subject: [PATCH] Release v2.15.2 --- CHANGELOG.md | 17 +++++++++++++++++ src/osmium/version.py | 6 +++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 142fe1d0..5b72316d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [2.15.2] - 2019-03-09 + +### Added + +- NodeLocationsForWays (accidentally removed in 2.15.0) +- more tests + +### Changed + +- GIL lock now released while apply() is in C++ code + +### Fixed + +- unicode output of tag str() representation for python 2 +- handling of tempfile in test for pyosmium_get_changes +- documentation for ends_have_same_location() + ## [2.15.1] - 2019-01-24 ### Added diff --git a/src/osmium/version.py b/src/osmium/version.py index cc78815b..552c8b74 100644 --- a/src/osmium/version.py +++ b/src/osmium/version.py @@ -5,11 +5,11 @@ # the major version pyosmium_major = '2.15' # current release (Pip version) -pyosmium_release = '2.15.1' +pyosmium_release = '2.15.2' # libosmium version shipped with the Pip release -libosmium_version = '2.15.0' +libosmium_version = '2.15.1' # protozero version shipped with the Pip release -protozero_version = '1.6.4' +protozero_version = '1.6.7' # pybind11 version shipped with the Pip release pybind11_version = '2.2.4'