Skip to content

Commit

Permalink
prepare release 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Nov 9, 2022
1 parent 5667809 commit e7915e1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.5.0] - 2022-11-09

### Added

- type annotations for the public interface
- new `ReplicationServer.set_request_parameter()` function to specify additional
parameters to give to `requests.get()`

### Fixed

- writer now rolls back data buffer after exceptions (fixes #212)
- off-by-one error in computation of change ID from a start date
- socket timeout in pyosmium-get-changes/pyosmium-up-to-date was ignored
falling back to waiting forever on requests

### Changed

- use format strings instead of `format()` where possible
- pyosmium-get-changes now prints an error message when there is a HTTP error
during download
- overwriting `ReplicationServer.open_url()` is no longer recommended,
use new `ReplicationServer.set_request_parameter()` function instead
- cookies for pyosmium-get-changes/pyosmium-up-to-date are now set via
request parameters, removing the last use-case where urllib was used
- update bundled pybind11 to 2.10.1

## [3.4.1] - 2022-07-28

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions src/osmium/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"""

# the major version
pyosmium_major = '3.4'
pyosmium_major = '3.5'
# current release (Pip version)
pyosmium_release = '3.4.1'
pyosmium_release = '3.5.0'

# libosmium version shipped with the Pip release
libosmium_version = '2.18.0'
Expand Down

0 comments on commit e7915e1

Please sign in to comment.