The latest releases have some critical fixes, see the changelog: https://github.com/osmcode/libosmium/blob/v2.5.4/CHANGELOG.md Merge commit 'afdf8e7b21fbaf597e91d9d8a7542635e60ee9a1' into use_libosmium_2_5_4
23 lines
687 B
C++
23 lines
687 B
C++
#ifndef PROTOZERO_VERSION_HPP
|
|
#define PROTOZERO_VERSION_HPP
|
|
|
|
/*****************************************************************************
|
|
|
|
protozero - Minimalistic protocol buffer decoder and encoder in C++.
|
|
|
|
This file is from https://github.com/mapbox/protozero where you can find more
|
|
documentation.
|
|
|
|
*****************************************************************************/
|
|
|
|
#define PROTOZERO_VERSION_MAJOR 1
|
|
#define PROTOZERO_VERSION_MINOR 2
|
|
#define PROTOZERO_VERSION_PATCH 3
|
|
|
|
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)
|
|
|
|
#define PROTOZERO_VERSION_STRING "1.2.3"
|
|
|
|
|
|
#endif // PROTOZERO_VERSION_HPP
|