@@ -23,7 +23,7 @@ PROJECT_NAME = json-c | |||||
# This could be handy for archiving the generated documentation or | # This could be handy for archiving the generated documentation or | ||||
# if some version control system is used. | # if some version control system is used. | ||||
PROJECT_NUMBER = 0.10 | |||||
PROJECT_NUMBER = 0.10.99 | |||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) | # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) | ||||
# base path where the generated documentation will be put. | # base path where the generated documentation will be put. | ||||
@@ -67,7 +67,7 @@ maintainer-clean-local: | |||||
if ENABLE_OLDNAME_COMPAT | if ENABLE_OLDNAME_COMPAT | ||||
install-data-hook: | install-data-hook: | ||||
test \! -e "$(DESTDIR)@includedir@json" || rm "$(DESTDIR)@includedir@/json" | |||||
test \! -e "$(DESTDIR)@includedir@/json" || rm "$(DESTDIR)@includedir@/json" | |||||
$(LN_S) json-c "$(DESTDIR)@includedir@/json" | $(LN_S) json-c "$(DESTDIR)@includedir@/json" | ||||
uninstall-local: | uninstall-local: | ||||
@@ -53,6 +53,7 @@ Post-release checklist: | |||||
git branch master | git branch master | ||||
Add new section to CHANGES | Add new section to CHANGES | ||||
Update the version in json_c_version.h | |||||
Update the version in Doxyfile | Update the version in Doxyfile | ||||
Update the version in configure.in | Update the version in configure.in | ||||
Update the libjson_la_LDFLAGS line in Makefile.am to the new version. | Update the libjson_la_LDFLAGS line in Makefile.am to the new version. | ||||
@@ -1,7 +1,7 @@ | |||||
AC_PREREQ(2.52) | AC_PREREQ(2.52) | ||||
# Process this file with autoconf to produce a configure script. | # Process this file with autoconf to produce a configure script. | ||||
AC_INIT([json-c], 0.10, [json-c@googlegroups.com]) | |||||
AC_INIT([json-c], 0.10.99, [json-c@googlegroups.com]) | |||||
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) | AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) | ||||
@@ -10,11 +10,11 @@ | |||||
#define JSON_C_MAJOR_VERSION 0 | #define JSON_C_MAJOR_VERSION 0 | ||||
#define JSON_C_MINOR_VERSION 10 | #define JSON_C_MINOR_VERSION 10 | ||||
#define JSON_C_MICRO_VERSION 0 | |||||
#define JSON_C_MICRO_VERSION 99 | |||||
#define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \ | #define JSON_C_VERSION_NUM ((JSON_C_MAJOR_VERSION << 16) | \ | ||||
(JSON_C_MINOR_VERSION << 8) | \ | (JSON_C_MINOR_VERSION << 8) | \ | ||||
JSON_C_MICRO_VERSION) | JSON_C_MICRO_VERSION) | ||||
#define JSON_C_VERSION "0.10" | |||||
#define JSON_C_VERSION "0.10.99" | |||||
const char *json_c_version(void); /* Returns JSON_C_VERSION */ | const char *json_c_version(void); /* Returns JSON_C_VERSION */ | ||||
int json_c_version_num(void); /* Returns JSON_C_VERSION_NUM */ | int json_c_version_num(void); /* Returns JSON_C_VERSION_NUM */ | ||||