]> granicus.if.org Git - json-c/commitdiff
Bump the version up to 0.10.99 to make it clear that the master branch is beyond...
authorEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 23 Dec 2012 17:09:20 +0000 (11:09 -0600)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 23 Dec 2012 17:09:20 +0000 (11:09 -0600)
Doxyfile
Makefile.am
RELEASE_CHECKLIST.txt
configure.in
json_c_version.h

index 3ff27eb191365bc220803006205fdd1a3e3ecd04..91c9434e156c1418786541948c1a28528a381b32 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -23,7 +23,7 @@ PROJECT_NAME           = json-c
 # This could be handy for archiving the generated documentation or 
 # 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) 
 # base path where the generated documentation will be put. 
index 147d9576fa01d0965613badca3c295eb08339707..51159b0a7695e2013185d1005fa4bc794b554959 100644 (file)
@@ -67,7 +67,7 @@ maintainer-clean-local:
 
 if ENABLE_OLDNAME_COMPAT
 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"
 
 uninstall-local:
index d086592475e72b45bb87fe491f4d75907fcffd24..bdc547aa7264cc5e9f88f5a1a1e8f82567d4f08d 100644 (file)
@@ -53,6 +53,7 @@ Post-release checklist:
 
 git branch master
 Add new section to CHANGES
+Update the version in json_c_version.h
 Update the version in Doxyfile
 Update the version in configure.in
 Update the libjson_la_LDFLAGS line in Makefile.am to the new version.
index 387b42204aa2524e6e625a43578eef37b4a5317d..5a3c0dfcb44a123dd065f7740328223780cdbebc 100644 (file)
@@ -1,7 +1,7 @@
 AC_PREREQ(2.52)
 
 # 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)
 
index 3e35aff84a3470a6db7bb8e82425359e418ea626..72bbbae49e643a5c9564bfc33a71b4917f02ab6d 100644 (file)
 
 #define JSON_C_MAJOR_VERSION 0
 #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) | \
                             (JSON_C_MINOR_VERSION << 8) | \
                             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 */
 int json_c_version_num(void);     /* Returns JSON_C_VERSION_NUM */