File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 1- protobluff-0.5.0 (2016-01-xx )
1+ protobluff-0.5.0 (2016-01-11 )
22
3- In progress
3+ This release adds support for oneofs. protobluff now implements all features
4+ of the Protocol Buffers 2 specification, except groups (which are deprecated)
5+ and generic services which are highly implementation- and protocol-dependent.
6+ However, there may be a GRPC-based service implementation in the future.
7+
8+ This is the last release before bumping the version to 1.0.0. proto3 support
9+ is basically possible (and not that complicated to implement), and may also
10+ be something that is added in the future. The libtool version has been
11+ updated to 4.0.0, due to the renaming of some descriptor-related functions.
412
513 Runtime:
614
Original file line number Diff line number Diff line change 1+ 0.4.0 => 0.5.0
2+
3+ The bindings have to be regenerated.
4+
150.3.x => 0.4.0
26
37 Encoder
Original file line number Diff line number Diff line change 2424
2525AC_PREREQ ( 2.69 )
2626
27- AC_INIT ( [ protobluff] ,
[ 0.4.1 ] ,
[ [email protected] ] ) 27+ AC_INIT ( [ protobluff] ,
[ 0.5.0 ] ,
[ [email protected] ] ) 2828AM_INIT_AUTOMAKE ( [ subdir-objects foreign] )
2929
3030m4_ifdef ( [ AM_SILENT_RULES ] , [ AM_SILENT_RULES ([ yes] )] )
@@ -48,7 +48,7 @@ AC_CONFIG_MACRO_DIR([m4])
4848
4949# Library versioning as <current:revision:age> - also remember to synchronize
5050# this value with the version info in the core/common.h header file.
51- AC_SUBST ( [ VERSION_INFO] , [ 3 :0:0] )
51+ AC_SUBST ( [ VERSION_INFO] , [ 4 :0:0] )
5252
5353# Checks for programs
5454AC_PROG_AWK
Original file line number Diff line number Diff line change 3333 * Current ABI version as a single integer to test binary compatibility in
3434 * the generated header files: current * 10^6 + revision * 10^3 + age
3535 */
36- #define PB_VERSION (3 * 1000000) + (0 * 1000) + 0
36+ #define PB_VERSION (4 * 1000000) + (0 * 1000) + 0
3737
3838/*
3939 * Agnostic C-linkage classifier for extern functions when compiling from C++
You can’t perform that action at this time.
0 commit comments