Skip to content

Commit ef3adea

Browse files
committed
Prepare 0.5.0 release
1 parent 5b5de6a commit ef3adea

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CHANGELOG

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
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

MIGRATION

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.4.0 => 0.5.0
2+
3+
The bindings have to be regenerated.
4+
15
0.3.x => 0.4.0
26

37
Encoder

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
AC_PREREQ(2.69)
2626

27-
AC_INIT([protobluff], [0.4.1], [[email protected]])
27+
AC_INIT([protobluff], [0.5.0], [[email protected]])
2828
AM_INIT_AUTOMAKE([subdir-objects foreign])
2929

3030
m4_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
5454
AC_PROG_AWK

include/protobluff/core/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
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++

0 commit comments

Comments
 (0)