[cairo-commit] cairomm ChangeLog, 1.82, 1.83 NEWS, 1.7, 1.8 configure.in, 1.20, 1.21

Jonathon Jongsma commit at pdx.freedesktop.org
Sun Aug 20 10:18:04 PDT 2006


Committed by: jjongsma

Update of /cvs/cairo/cairomm
In directory kemper:/tmp/cvs-serv32120

Modified Files:
	ChangeLog NEWS configure.in 
Log Message:
2006-08-20  Jonathon Jongsma  <jonathon.jongsma at 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


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairomm/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -d -r1.82 -r1.83
--- ChangeLog	20 Aug 2006 17:03:36 -0000	1.82
+++ ChangeLog	20 Aug 2006 17:18:02 -0000	1.83
@@ -1,3 +1,12 @@
+1.2.0:
+
+2006-08-20  Jonathon Jongsma  <jonathon.jongsma at 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 at gmail.com>
 
 	* examples/pdf-surface/.cvsignore:

Index: NEWS
===================================================================
RCS file: /cvs/cairo/cairomm/NEWS,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- NEWS	9 Jul 2006 21:04:44 -0000	1.7
+++ NEWS	20 Aug 2006 17:18:02 -0000	1.8
@@ -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:

Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairomm/configure.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- configure.in	19 Aug 2006 01:22:51 -0000	1.20
+++ configure.in	20 Aug 2006 17:18:02 -0000	1.21
@@ -2,8 +2,8 @@
 
 #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_VERSION)
 
 #shared library versioning
-GENERIC_LIBRARY_VERSION=0:8:0
+GENERIC_LIBRARY_VERSION=1:0:0
 #                       | | |
 #                +------+ | +---+
 #                |        |     |



More information about the cairo-commit mailing list