[Git][debian-gis-team/protozero][upstream] New upstream version 1.6.7
Bas Couwenberg
gitlab at salsa.debian.org
Thu Feb 21 11:10:30 GMT 2019
Bas Couwenberg pushed to branch upstream at Debian GIS Project / protozero
Commits:
18ff78a0 by Bas Couwenberg at 2019-02-21T11:00:09Z
New upstream version 1.6.7
- - - - -
4 changed files:
- CHANGELOG.md
- CMakeLists.txt
- include/protozero/pbf_reader.hpp
- include/protozero/version.hpp
Changes:
=====================================
CHANGELOG.md
=====================================
@@ -15,6 +15,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
+## [1.6.7] - 2018-02-21
+
+### Fixed
+
+- Signed-unsigned comparison on 32 bit systems.
+
+
## [1.6.6] - 2018-02-20
### Fixed
=====================================
CMakeLists.txt
=====================================
@@ -14,7 +14,7 @@ project(protozero)
set(PROTOZERO_VERSION_MAJOR 1)
set(PROTOZERO_VERSION_MINOR 6)
-set(PROTOZERO_VERSION_PATCH 6)
+set(PROTOZERO_VERSION_PATCH 7)
set(PROTOZERO_VERSION
"${PROTOZERO_VERSION_MAJOR}.${PROTOZERO_VERSION_MINOR}.${PROTOZERO_VERSION_PATCH}")
=====================================
include/protozero/pbf_reader.hpp
=====================================
@@ -113,7 +113,7 @@ class pbf_reader {
}
void skip_bytes(pbf_length_type len) {
- if (m_end - m_data < len) {
+ if (m_end - m_data < static_cast<ptrdiff_t>(len)) {
throw end_of_buffer_exception{};
}
m_data += len;
=====================================
include/protozero/version.hpp
=====================================
@@ -23,12 +23,12 @@ documentation.
#define PROTOZERO_VERSION_MINOR 6
/// The patch number
-#define PROTOZERO_VERSION_PATCH 6
+#define PROTOZERO_VERSION_PATCH 7
/// The complete version number
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)
/// Version number as string
-#define PROTOZERO_VERSION_STRING "1.6.6"
+#define PROTOZERO_VERSION_STRING "1.6.7"
#endif // PROTOZERO_VERSION_HPP
View it on GitLab: https://salsa.debian.org/debian-gis-team/protozero/commit/18ff78a033ffe7f47e3866e5e770abe324124a13
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/protozero/commit/18ff78a033ffe7f47e3866e5e770abe324124a13
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20190221/0445f384/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list