This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch stretch-backports in repository protozero.
commit 1c205aea54b39973e00ca537983d4160fde7d2b5 Merge: 07b837f cdd7f77 Author: Bas Couwenberg <[email protected]> Date: Thu Sep 28 07:44:46 2017 +0200 Merge tag 'debian/1.5.3-1' into stretch-backports .gitignore | 1 + .travis.yml | 93 +++-- CHANGELOG.md | 35 +- Makefile | 36 +- README.md | 10 + debian/changelog | 8 + debian/control | 2 +- debian/copyright | 2 +- doc/advanced.md | 31 +- doc/cheatsheet.md | 4 +- doc/tutorial.md | 84 +++-- gyp/protozero.gyp | 4 +- include/protozero/iterators.hpp | 53 ++- include/protozero/pbf_builder.hpp | 105 ++++++ include/protozero/pbf_message.hpp | 94 ++++- include/protozero/pbf_reader.hpp | 57 ++- include/protozero/pbf_writer.hpp | 129 +++++-- include/protozero/types.hpp | 21 +- include/protozero/varint.hpp | 38 +- include/protozero/version.hpp | 4 +- package.json | 2 +- test/{include => catch}/catch.hpp | 507 +++++++++++++++------------ test/include/packed_access.hpp | 100 +++++- test/include/scalar_access.hpp | 33 +- test/include/test.hpp | 10 +- test/include/testcase.hpp | 2 +- test/t/alignment/test_cases.cpp | 44 +-- test/t/basic/test_cases.cpp | 14 +- test/t/bool/test_cases.cpp | 62 ++-- test/t/bool/writer_test_cases.cpp | 4 +- test/t/bytes/test_cases.cpp | 24 +- test/t/bytes/writer_test_cases.cpp | 2 +- test/t/complex/test_cases.cpp | 101 +++--- test/t/data_view/test_cases.cpp | 10 +- test/t/double/test_cases.cpp | 18 +- test/t/double/writer_test_cases.cpp | 2 +- test/t/endian/test_cases.cpp | 22 +- test/t/enum/test_cases.cpp | 22 +- test/t/enum/writer_test_cases.cpp | 2 +- test/t/fixed32/writer_test_cases.cpp | 2 +- test/t/float/test_cases.cpp | 16 +- test/t/int32/writer_test_cases.cpp | 2 +- test/t/message/test_cases.cpp | 42 +-- test/t/message/writer_test_cases.cpp | 6 +- test/t/nested/test_cases.cpp | 24 +- test/t/nested/writer_test_cases.cpp | 8 +- test/t/repeated/test_cases.cpp | 8 +- test/t/repeated_packed_bool/test_cases.cpp | 36 +- test/t/repeated_packed_double/test_cases.cpp | 8 +- test/t/repeated_packed_enum/test_cases.cpp | 8 +- test/t/repeated_packed_float/test_cases.cpp | 8 +- test/t/rollback/test_cases.cpp | 34 +- test/t/skip/test_cases.cpp | 6 +- test/t/string/test_cases.cpp | 20 +- test/t/tag_and_type/test_cases.cpp | 2 +- test/t/tags/test_cases.cpp | 2 +- test/t/varint/test_cases.cpp | 18 +- test/t/vector_tile/test_cases.cpp | 21 +- test/t/wrong_type_access/test_cases.cpp | 24 +- test/tests.cpp | 12 +- 60 files changed, 1335 insertions(+), 764 deletions(-) diff --cc debian/changelog index e30a3b1,0b1fab8..c0c998a --- a/debian/changelog +++ b/debian/changelog @@@ -1,10 -1,11 +1,18 @@@ + protozero (1.5.3-1) unstable; urgency=medium + + * New upstream release. + * Bump Standards-Version to 4.1.0, no changes. + * Update path for catch.hpp in copyright file. + + -- Bas Couwenberg <[email protected]> Fri, 22 Sep 2017 16:49:40 +0200 + +protozero (1.5.2-1~bpo9+1) stretch-backports; urgency=medium + + * Rebuild for stretch-backports. + * Update branch in gbp.conf & Vcs-Git URL. + + -- Bas Couwenberg <[email protected]> Thu, 31 Aug 2017 11:00:03 +0200 + protozero (1.5.2-1) unstable; urgency=medium * New upstream release. diff --cc debian/control index 0a306c7,b893e98..9c9e92a --- a/debian/control +++ b/debian/control @@@ -9,9 -9,9 +9,9 @@@ Build-Depends: debhelper (>= 9) libprotobuf-dev, protobuf-compiler, pkg-config - Standards-Version: 4.0.0 + Standards-Version: 4.1.0 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/protozero.git/ -Vcs-Git: https://anonscm.debian.org/git/pkg-grass/protozero.git +Vcs-Git: https://anonscm.debian.org/git/pkg-grass/protozero.git -b stretch-backports Homepage: https://github.com/mapbox/protozero Package: libprotozero-dev -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/protozero.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

