diff options
author | Jonathon Jongsma <jjongsma@gnome.org> | 2006-08-20 17:18:02 +0000 |
---|---|---|
committer | Jonathon Jongsma <jjongsma@gnome.org> | 2006-08-20 17:18:02 +0000 |
commit | ffa94c9965872a4a693b320fa238e304f45740e9 (patch) | |
tree | ccfc7185080854f9fefa69175bb5010d3f7a8e93 | |
parent | fd002ef246ad8833c3f64e82defad9088a416af4 (diff) |
2006-08-20 Jonathon Jongsma <jonathon.jongsma@gmail.com>RELEASE_1_2_0
* NEWS: Update information about new stuff in 1.2.0
* configure.in: bump the release version number to 1.2.0 and the shared
library version number to 1:0:0 since interfaces were changed and added and
we're now guaranteeing API/ABI stability
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | configure.in | 6 |
3 files changed, 26 insertions, 3 deletions
@@ -1,3 +1,12 @@ +1.2.0: + +2006-08-20 Jonathon Jongsma <jonathon.jongsma@gmail.com> + + * NEWS: Update information about new stuff in 1.2.0 + * configure.in: bump the release version number to 1.2.0 and the shared + library version number to 1:0:0 since interfaces were changed and added and + we're now guaranteeing API/ABI stability + 2006-08-20 Jonathon Jongsma <jonathon.jongsma@gmail.com> * examples/pdf-surface/.cvsignore: @@ -1,3 +1,17 @@ +1.2.0: + +* This is the first release that guarantees API and ABI stability +* Changed API: + - Context::clear_path() is now Context::begin_new_path() + - Context::new_sub_path() is now Context::begin_new_sub_path() +* new API: + - Win32Surface::get_dc() + - Win32Surface::create() for device-independent bitmaps +* Bugfixes + - fixed a memory leak where C++ wrapper objects were not being destroyed +* Fixes for compiling with MSVC (also includes project and resource files for + Visual Studio 2005. See the MSVC/ directory) + 1.1.10: * API: diff --git a/configure.in b/configure.in index 7a6c82a..1feb635 100644 --- a/configure.in +++ b/configure.in @@ -2,8 +2,8 @@ AC_INIT(cairomm/cairomm.h) #release versioning GENERIC_MAJOR_VERSION=1 -GENERIC_MINOR_VERSION=1 -GENERIC_MICRO_VERSION=12 +GENERIC_MINOR_VERSION=2 +GENERIC_MICRO_VERSION=0 GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION AC_SUBST(GENERIC_MAJOR_VERSION) AC_SUBST(GENERIC_MINOR_VERSION) @@ -11,7 +11,7 @@ AC_SUBST(GENERIC_MICRO_VERSION) AC_SUBST(GENERIC_VERSION) #shared library versioning -GENERIC_LIBRARY_VERSION=0:8:0 +GENERIC_LIBRARY_VERSION=1:0:0 # | | | # +------+ | +---+ # | | | |