Skip to content

Commit

Permalink
Prepare 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Jan 8, 2017
1 parent 163e32d commit 24ac028
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
protobluff-1.0.0 (2016-xx-xx)
protobluff-1.0.0 (2017-01-08)

Preparing for 1.0.0...
protobluff is reaches maturity.

Runtime:

Expand All @@ -13,6 +13,10 @@ protobluff-1.0.0 (2016-xx-xx)
* Removed pb_cursor_pos() (deprecated in 0.4.0)
* Removed raw pointer access (deprecated in 0.4.0)

Generator:

* Fixed generated source of nested enum value accessors

protobluff-0.5.0 (2016-01-11)

This release adds support for oneofs. protobluff now implements all features
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

AC_PREREQ(2.69)

AC_INIT([protobluff], [0.5.0], [martin.donath@squidfunk.com])
AC_INIT([protobluff], [1.0.0], [martin.donath@squidfunk.com])
AM_INIT_AUTOMAKE([subdir-objects foreign])

m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Expand All @@ -48,7 +48,7 @@ AC_CONFIG_MACRO_DIR([m4])

# Library versioning as <current:revision:age> - also remember to synchronize
# this value with the version info in the core/common.h header file.
AC_SUBST([VERSION_INFO], [4:0:0])
AC_SUBST([VERSION_INFO], [5:0:0])

# Checks for programs
AC_PROG_AWK
Expand Down
2 changes: 1 addition & 1 deletion include/protobluff/core/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* Current ABI version as a single integer to test binary compatibility in
* the generated header files: current * 10^6 + revision * 10^3 + age
*/
#define PB_VERSION (4 * 1000000) + (0 * 1000) + 0
#define PB_VERSION (5 * 1000000) + (0 * 1000) + 0

/*
* Agnostic C-linkage classifier for extern functions when compiling from C++
Expand Down

0 comments on commit 24ac028

Please sign in to comment.