Browse Source

Bump the version up to 0.10.99 to make it clear that the master branch is beyond anything on the 0.10 branch.

tags/json-c-0.11-20130402
Eric Haszlakiewicz 12 years ago
parent
commit
fcc768e667
5 changed files with 6 additions and 5 deletions
  1. +1
    -1
      Doxyfile
  2. +1
    -1
      Makefile.am
  3. +1
    -0
      RELEASE_CHECKLIST.txt
  4. +1
    -1
      configure.in
  5. +2
    -2
      json_c_version.h

+ 1
- 1
Doxyfile View File

@@ -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.


+ 1
- 1
Makefile.am View File

@@ -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:


+ 1
- 0
RELEASE_CHECKLIST.txt View File

@@ -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
- 1
configure.in View File

@@ -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)




+ 2
- 2
json_c_version.h View File

@@ -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 */


Loading…
Cancel
Save