parent
218bfe8ed8
commit
a386f1b48c
|
|
@ -1,6 +1,9 @@
|
|||
## Unreleased
|
||||
|
||||
- C: Support hardening buildflags set in the environment ([09845ca4](https://github.com/openstreetmap/OSM-binary/commit/09845ca4087c7404b1de33914233dbf53f9de4c3))
|
||||
- C: Updated CMake configuration. This can now completely replace the configuration using the Makefiles.
|
||||
- Proto: Add optional way to add node locations to way ([e7d3201](https://github.com/openstreetmap/OSM-binary/commit/e7d3201a97a86ef0c0608bfcd960e44e54962d7b))
|
||||
- Proto: Add optional LZ4 and ZSTD compressed data blocks ([218bfe8](https://github.com/openstreetmap/OSM-binary/commit/218bfe8ed800173279ede2d9028fd9a5c33d12e4))
|
||||
|
||||
## Release notes for 1.4.0 (2020-10-20)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.7)
|
||||
|
||||
project(OSMBinary)
|
||||
project(osmpbf VERSION 1.5.0)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ We publish the Java library to [Maven Central](https://search.maven.org/):
|
|||
<dependency>
|
||||
<groupId>org.openstreetmap.pbf</groupId>
|
||||
<artifactId>osmpbf</artifactId>
|
||||
<version>1.4.0</version>
|
||||
<version>1.5.0</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
// this describes the high-level OSM objects
|
||||
#include <osmpbf/osmformat.pb.h> // IWYU pragma: export
|
||||
|
||||
#define OSMPBF_VERSION "1.3.3"
|
||||
#define OSMPBF_VERSION "1.5.0"
|
||||
|
||||
namespace OSMPBF {
|
||||
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -6,7 +6,7 @@
|
|||
<groupId>org.openstreetmap.pbf</groupId>
|
||||
<artifactId>osmpbf</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.4.0</version>
|
||||
<version>1.5.0</version>
|
||||
<name>OSM-Binary</name>
|
||||
<description>Library for the OpenStreetMap PBF format</description>
|
||||
<url>https://github.com/openstreetmap/OSM-binary</url>
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@ add_library(osmpbf_shared SHARED ${CPPS})
|
|||
target_link_libraries(osmpbf_shared PRIVATE protobuf::libprotobuf)
|
||||
target_include_directories(osmpbf_shared SYSTEM PUBLIC ${Protobuf_INCLUDE_DIRS})
|
||||
set_target_properties(osmpbf_shared PROPERTIES OUTPUT_NAME osmpbf)
|
||||
set_target_properties(osmpbf_shared PROPERTIES VERSION ${PROJECT_VERSION})
|
||||
set_target_properties(osmpbf_shared PROPERTIES SOVERSION ${PROJECT_VERSION_MAJOR})
|
||||
install(TARGETS osmpbf_shared LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/include/osmpbf/osmpbf.h
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ CXXFLAGS ?= -O3
|
|||
AR ?= ar
|
||||
PROTOC ?= protoc
|
||||
SONAME ?= libosmpbf.so.1
|
||||
VERSION ?= 1.3.3
|
||||
VERSION ?= 1.5.0
|
||||
|
||||
CXXFLAGS += -Wall -Wextra -pedantic -Wredundant-decls -Wdisabled-optimization -Wctor-dtor-privacy -Wnon-virtual-dtor -Woverloaded-virtual -Wsign-promo -Wno-long-long
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue