diff options
author | Jiří Techet <techet@gmail.com> | 2011-01-18 00:26:24 +0100 |
---|---|---|
committer | Jiří Techet <techet@gmail.com> | 2011-01-18 00:26:24 +0100 |
commit | 018c19648729a7af147c5e431bb042f04c9d3150 (patch) | |
tree | ab78596712e1a358b5965541636c307dc783f4bc | |
parent | 1b709e38a436211b5e5e53ae2b6b269c382ea9ee (diff) | |
download | libchamplain-018c19648729a7af147c5e431bb042f04c9d3150.tar.gz |
0.8.1LIBCHAMPLAIN_0_8_1
Signed-off-by: Jiří Techet <techet@gmail.com>
-rw-r--r-- | NEWS | 13 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 15 insertions, 2 deletions
@@ -1,3 +1,16 @@ +libchamplain 0.8.1 (2011-01-18) +=============================== + +Stable release + +Changes: +* Include MapQuest renderer for OSM (Tomaž Vajngerl) +* Improve introspection annotations (Patrick Salecker, Jiří Techet) +* Remove static python bindings, use introspection-based instead (William Jon McCann) +* Improve Vala bindings (Tomaž Vajngerl, Andreas Brauchli) +* Fix marker positioning problems by not ordering them by latitude (Jiří Techet) +* Fire latitude and longitude signals independently of viewport shift (Jiří Techet, Tomaž Vajngerl) + libchamplain 0.8.0 (2010-09-27) =============================== diff --git a/configure.ac b/configure.ac index 8275458..feaaba3 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. m4_define([champlain_major_version], [0]) m4_define([champlain_minor_version], [8]) -m4_define([champlain_micro_version], [0]) +m4_define([champlain_micro_version], [1]) m4_define([champlain_version], [champlain_major_version.champlain_minor_version.champlain_micro_version]) m4_define([champlain_minor_api_version], [m4_eval(champlain_minor_version + champlain_minor_version%2)]) @@ -36,7 +36,7 @@ AM_PROG_CC_C_O # - If binary compatibility has been broken (eg removed or changed interfaces) # change to C+1:0:0 # - If the interface is the same as the previous version, change to C:R+1:A -LIBRARY_VERSION=1:2:0 +LIBRARY_VERSION=2:2:1 CHAMPLAIN_API_VERSION=champlain_api_version CHAMPLAIN_API_VERSION_NORM=champlain_major_version[_]champlain_minor_api_version CHAMPLAIN_MAJOR_VERSION=champlain_major_version |