diff --git a/ChangeLog b/ChangeLog index 0380617..fa6fcc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +protobuf-c (1.3.2) + [ Robert Edmonds ] + * Release 1.3.2. + + * Use protobuf 3.7.1 in the Travis-CI environment (#368). + + * Fix test suite build failure on newer versions of protobuf (#369). + + [ Ilya Lipnitskiy ] + * Fix proto3 repeated scalar field default packing behavior (#330, #377). + + [ Adam Cozzette ] + * Fix out-of-bounds read in scan_length_prefixed_data() (#375, #376). + + [ Jurriaan Bremer ] + * Fix -Wdeclaration-after-statement warning in parse_oneof_member() (#360). + + [ Hayri Ugur Koltuk ] + * Fix SIGSEGV in protobuf_c_message_check() on messages with unpopulated + oneof members (#358). + + [ Italo Guerrieri ] + * Do not allow tag values of 0 in protobuf messages, as these are not + allowed by proto2 or proto3 (#299). + protobuf-c (1.3.1) [ Robert Edmonds ] diff --git a/build-cmake/CMakeLists.txt b/build-cmake/CMakeLists.txt index 1097a63..bc1728f 100644 --- a/build-cmake/CMakeLists.txt +++ b/build-cmake/CMakeLists.txt @@ -1,6 +1,6 @@ SET(PACKAGE protobuf-c) SET(PACKAGE_NAME protobuf-c) -SET(PACKAGE_VERSION 1.3.1) +SET(PACKAGE_VERSION 1.3.2) CMAKE_MINIMUM_REQUIRED(VERSION 2.8 FATAL_ERROR) diff --git a/configure.ac b/configure.ac index cb93036..4e1b832 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.63) AC_INIT([protobuf-c], - [1.3.1], + [1.3.2], [https://github.com/protobuf-c/protobuf-c/issues], [protobuf-c], [https://github.com/protobuf-c/protobuf-c]) diff --git a/protobuf-c/protobuf-c.h b/protobuf-c/protobuf-c.h index 390bf42..e2f027e 100755 --- a/protobuf-c/protobuf-c.h +++ b/protobuf-c/protobuf-c.h @@ -790,13 +790,13 @@ protobuf_c_version_number(void); * The version of the protobuf-c headers, represented as a string using the same * format as protobuf_c_version(). */ -#define PROTOBUF_C_VERSION "1.3.1" +#define PROTOBUF_C_VERSION "1.3.2" /** * The version of the protobuf-c headers, represented as an integer using the * same format as protobuf_c_version_number(). */ -#define PROTOBUF_C_VERSION_NUMBER 1003001 +#define PROTOBUF_C_VERSION_NUMBER 1003002 /** * The minimum protoc-c version which works with the current version of the