Skip to content

Commit 8b1f892

Browse files
committed
Release 3.3.0
1 parent 236eb7a commit 8b1f892

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,35 @@
44
All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [3.3.0] - 2022-03-22
8+
9+
### Added
10+
11+
- `add_box()` for osmium.osm.Header for setting the bbox in a OSM file
12+
- SimpleWriter now can receive a customized header in its constructor
13+
- SimpleWriter now accepts a list of RelationMember in then member parameter
14+
of `add_relation()`
15+
- more tests for replication server and osm base types
16+
17+
### Fixed
18+
19+
- AttributeError when using pyosmium-get-changes with cookies (thanks @wiktorn)
20+
- avoid memory leak in `apply_buffer()` functions in
21+
SimpleHandler and MergeInputReader
22+
- maek sure close() is called for requests.Session and requests.Response
23+
- documentation for `open_url()` now reflects its new behaviour
24+
- build issue with raw ssize_t on Windows since Python 3.10
25+
26+
### Changed
27+
28+
- ReplicationServer is now a context manager
29+
- allow any string-like object for `apply_file()`
30+
- switch tests from nose to pytest
31+
- use Python libraries instead of wget for downloading contrib packages
32+
- update to libosmium 2.18.0 (requires now C++14)
33+
- update to pybind11 2.9.1
34+
35+
736
## [3.2.0] - 2021-08-09
837

938
### Fixed

src/osmium/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44

55
# the major version
6-
pyosmium_major = '3.2'
6+
pyosmium_major = '3.3'
77
# current release (Pip version)
8-
pyosmium_release = '3.2.0'
8+
pyosmium_release = '3.3.0'
99

1010
# libosmium version shipped with the Pip release
1111
libosmium_version = '2.18.0'

0 commit comments

Comments
 (0)