Skip to content

Commit 00ccbcc

Browse files
committed
Release v2.15.0
1 parent c8a18f3 commit 00ccbcc

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
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+
## [2.15.0] - 2018-12-09
8+
9+
### Added
10+
11+
- more tests
12+
13+
### Changed
14+
15+
- replace boost-python with header only pybind11 library
16+
- switch to cmake for configuration (called through setup.py)
17+
- default node cache changed to flex_mem
18+
719
## [2.14.4] - 2018-10-30
820

921
### Added

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,16 @@ Other requirements are:
2020
* expat, libz, libbz2 and Boost variant and iterator
2121
* a recent C++ compiler (Clang 3.4+, GCC 4.8+)
2222

23+
## Installation
24+
25+
### Installing prerequisites
26+
2327
On Debian/Ubuntu-like systems the following should install all
2428
dependencies required for installing via pip:
2529

2630
sudo apt-get install build-essential cmake libboost-dev \
2731
libexpat1-dev zlib1g-dev libbz2-dev
2832

29-
## Installation
30-
3133
### Using Pip
3234

3335
The recommended way to install pyosmium is via pip:

src/osmium/version.py

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

55
# the major version
6-
pyosmium_major = '2.14'
6+
pyosmium_major = '2.15'
77
# current release (Pip version)
8-
pyosmium_release = '2.14.4'
8+
pyosmium_release = '2.15.0'
99

1010
# libosmium version shipped with the Pip release
11-
libosmium_version = '2.14.2'
11+
libosmium_version = '2.15.0'
1212
# protozero version shipped with the Pip release
13-
protozero_version = '1.6.3'
13+
protozero_version = '1.6.4'
1414
# pybind11 version shipped with the Pip release
1515
pybind11_version = '2.2.4'

0 commit comments

Comments
 (0)