diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cfe3e03..4a8a8504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [3.0.1] - 2020-07-25 + +### Added + +- allow to set user in mutable object + +### Changed + +- use current libosmium and protozero + +### Fixed + +- avoid leaking Python handle in timestamp conversion + ## [3.0.0] - 2020-05-03 ### Added diff --git a/src/osmium/version.py b/src/osmium/version.py index 7b8bccac..24276ebf 100644 --- a/src/osmium/version.py +++ b/src/osmium/version.py @@ -5,11 +5,11 @@ # the major version pyosmium_major = '3.0' # current release (Pip version) -pyosmium_release = '3.0.0' +pyosmium_release = '3.0.1' # libosmium version shipped with the Pip release -libosmium_version = '2.15.5' +libosmium_version = '2.15.6' # protozero version shipped with the Pip release -protozero_version = '1.6.8' +protozero_version = '1.7.0' # pybind11 version shipped with the Pip release pybind11_version = '2.5.0'