summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS25
-rw-r--r--configure.ac6
2 files changed, 28 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 2b0662c..587dc86 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,28 @@
+libspectre 0.2.0 (03 January 2008)
+==================================
+
+API additions:
+
+ - Rendering unstructured documents: it's a bit confusing calling
+ get_page for a document with no pages. The following functions has
+ been added for rendering unstructured documents:
+
+ * spectre_document_render
+ * spectre_document_render_full
+ * spectre_document_get_page_size
+
+ - Tile rendering: spectre_page_render_slice has been added to allow
+ rendering rectangles of the page. (Bug #13754)
+
+API changes:
+
+ - spectre_render_context_set_page_size determines the size of the
+ output image, but it doesn't affect the scale factor anymore.
+
+ - spectre_render_context_[set|get]_scale now require the scale factor for
+ both the X and Y dimensions.
+
+
libspectre 0.1.0 (16 December 2007)
===================================
diff --git a/configure.ac b/configure.ac
index 07e3f9b..011f44e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
AC_PREREQ(2.59)
m4_define([spectre_major_version], [0])
-m4_define([spectre_minor_version], [1])
+m4_define([spectre_minor_version], [2])
m4_define([spectre_micro_version], [0])
m4_define([spectre_version],
[spectre_major_version.spectre_minor_version.spectre_micro_version])
@@ -19,7 +19,7 @@ AM_MAINTAINER_MODE
#
## increment if the interface has additions, changes, removals.
-LT_CURRENT=1
+LT_CURRENT=2
## increment any time the source changes; set to
## 0 if you increment CURRENT
@@ -28,7 +28,7 @@ LT_REVISION=0
## increment if any interfaces have been added; set to 0
## if any interfaces have been changed or removed. removal has
## precedence over adding, so set to 0 if both happened.
-LT_AGE=0
+LT_AGE=1
VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
AC_SUBST(VERSION_INFO)