Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
New upstream version 1.6.7
· 18ff78a0
Bas Couwenberg
authored
Feb 21, 2019
18ff78a0
Merge tag 'upstream/1.6.7'
· 87fd9172
Bas Couwenberg
authored
Feb 21, 2019
Upstream version 1.6.7
87fd9172
New upstream release.
· b77546dc
Bas Couwenberg
authored
Feb 21, 2019
b77546dc
Set distribution to unstable.
· df1dbdb6
Bas Couwenberg
authored
Feb 21, 2019
df1dbdb6
Show whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
df1dbdb6
...
...
@@ -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
View file @
df1dbdb6
...
...
@@ -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
View file @
df1dbdb6
protozero (1.6.7-1) unstable; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@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
View file @
df1dbdb6
...
...
@@ -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
View file @
df1dbdb6
...
...
@@ -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