diff options
| author | Emmanuele Bassi <ebassi@gnome.org> | 2009-09-22 15:39:46 +0100 |
|---|---|---|
| committer | Emmanuele Bassi <ebassi@gnome.org> | 2009-09-22 15:39:46 +0100 |
| commit | 3f83767109979c660469b3b5862fbd04469a8011 (patch) | |
| tree | 666205adb7ca151ef3725f06c48e9f454f2da290 | |
| parent | bd604338b25884edbd86cf531505259948484323 (diff) | |
| download | json-glib-3f83767109979c660469b3b5862fbd04469a8011.tar.gz | |
[release] 0.8.00.8.0
| -rw-r--r-- | NEWS | 2 | ||||
| -rw-r--r-- | configure.ac | 8 |
2 files changed, 8 insertions, 2 deletions
@@ -20,6 +20,8 @@ Overview of changes for 0.8.0 lack of integer size in the JSON specificiation * Disallow the inclusion of single header files: only json-glib,h and json-gobject.h can be included directly +* Documentation fixes +* Clean up and remove code duplication inside the Parser object Overview of changes for 0.6.0 ============================= diff --git a/configure.ac b/configure.ac index c4b5306..febe3ca 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,13 @@ +# bump micro_version to the next even number for each point release +# bump micro_version to the next odd number after each release m4_define([json_major_version], [0]) -m4_define([json_minor_version], [7]) -m4_define([json_micro_version], [7]) +m4_define([json_minor_version], [8]) +m4_define([json_micro_version], [0]) m4_define([json_version], [json_major_version.json_minor_version.json_micro_version]) +# bump up by 1 for every micro release with no API changes, otherwise +# set to 0. after release, bump up by 1 m4_define([json_interface_age], [0]) m4_define([json_binary_age], [m4_eval(100 * json_minor_version + json_micro_version)]) |
