From: Petri Lehtinen Date: Tue, 20 Mar 2012 18:56:00 +0000 (+0200) Subject: Merge branch '2.3' X-Git-Tag: v2.4-moonshot~1^2~33 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=d286e7b753d26ca26479629952c53e2a89fb8fba;hp=3c6e36ba2df25121538753e20fcf2b2043ca67af;p=jansson.git Merge branch '2.3' --- diff --git a/configure.ac b/configure.ac index 70b0fed..753a09b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.60]) -AC_INIT([jansson], [2.3], [petri@digip.org]) +AC_INIT([jansson], [2.4-dev], [petri@digip.org]) AM_INIT_AUTOMAKE([1.10 foreign]) diff --git a/doc/conf.py b/doc/conf.py index fbbf65b..35c5238 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,9 +48,9 @@ copyright = u'2009-2012, Petri Lehtinen' # built documents. # # The short X.Y version. -version = '2.3' +version = '2.4' # The full version, including alpha/beta/rc tags. -release = version +release = '2.4-dev' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/jansson.h b/src/jansson.h index 68a367c..17885d4 100644 --- a/src/jansson.h +++ b/src/jansson.h @@ -22,10 +22,10 @@ extern "C" { #define JANSSON_MAJOR_VERSION 2 #define JANSSON_MINOR_VERSION 3 -#define JANSSON_MICRO_VERSION 0 +#define JANSSON_MICRO_VERSION 99 /* Micro version is omitted if it's 0 */ -#define JANSSON_VERSION "2.3" +#define JANSSON_VERSION "2.4-dev" /* Version as a 3-byte hex number, e.g. 0x010201 == 1.2.1. Use this for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */