Release version 1.7.0

This commit is contained in:
Jochen Topf 2026-07-26 16:42:30 +02:00
parent 5b5ae13a4a
commit 0265ab5f3d
4 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,13 @@
## Unreleased
## Release notes for 1.7.0 (2026-07-26)
- C++: Fix buffer overflow in osmpbf-outline tool [#95](https://github.com/openstreetmap/OSM-binary/pull/95)
- C++: Various small code cleanups and modernizations
- C++: osmpbf-outline tool moved to demo directory, it isn't installed by default any more. This tool was never really useful for normal users, it is more a demo/example showing how to use the library
Note to packagers: You should remove the osmpbf-outline tool from packages.
## Release notes for 1.6.1 (2025-12-20)
- Java: Update to latest protoc and protobuf runtime versions [#92](https://github.com/openstreetmap/OSM-binary/pull/92)

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)
project(osmpbf VERSION 1.5.0)
project(osmpbf VERSION 1.7.0)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

View File

@ -18,7 +18,7 @@
// this describes the high-level OSM objects
#include <osmpbf/osmformat.pb.h> // IWYU pragma: export
#define OSMPBF_VERSION "1.5.0"
#define OSMPBF_VERSION "1.7.0"
namespace OSMPBF {

View File

@ -6,7 +6,7 @@
<groupId>org.openstreetmap.pbf</groupId>
<artifactId>osmpbf</artifactId>
<packaging>jar</packaging>
<version>1.6.1</version>
<version>1.7.0</version>
<name>OSM-Binary</name>
<description>Library for the OpenStreetMap PBF format</description>
<url>https://github.com/openstreetmap/OSM-binary</url>