[Git][debian-gis-team/protozero][master] 4 commits: New upstream version 1.6.7

Bas Couwenberg gitlab at salsa.debian.org
Thu Feb 21 11:10:27 GMT 2019


Bas Couwenberg pushed to branch master at Debian GIS Project / protozero


Commits:
18ff78a0 by Bas Couwenberg at 2019-02-21T11:00:09Z
New upstream version 1.6.7
- - - - -
87fd9172 by Bas Couwenberg at 2019-02-21T11:00:11Z
Merge tag 'upstream/1.6.7'

Upstream version 1.6.7

- - - - -
b77546dc by Bas Couwenberg at 2019-02-21T11:00:23Z
New upstream release.

- - - - -
df1dbdb6 by Bas Couwenberg at 2019-02-21T11:00:52Z
Set distribution to unstable.

- - - - -


5 changed files:

- CHANGELOG.md
- CMakeLists.txt
- debian/changelog
- 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}")


=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+protozero (1.6.7-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Thu, 21 Feb 2019 12:00:42 +0100
+
 protozero (1.6.6-1) unstable; urgency=medium
 
   * New upstream release.


=====================================
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/compare/5be741c6f1182dab45c6e03990f297475776c471...df1dbdb687da6ce8d7dd4bd9b2cc679602f10a9e

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/protozero/compare/5be741c6f1182dab45c6e03990f297475776c471...df1dbdb687da6ce8d7dd4bd9b2cc679602f10a9e
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/0e28ae0a/attachment-0001.html>


More information about the Pkg-grass-devel mailing list