Commit 1d1d21d3fee33b7e82da11c6e352c8d84ed4b2db

Authored by Jay Berkenbilt
1 parent 788f6f77

ready for 2.3.0 release

ChangeLog
1 1 2011-08-11 Jay Berkenbilt <ejb@ql.org>
2 2  
  3 + * 2.3.0: release
  4 +
  5 + * include/qpdf/qpdf-c.h ("C"): add new methods
  6 + qpdf_init_write_memory, qpdf_get_buffer_length, and
  7 + qpdf_get_buffer to support writing to memory from the C API.
  8 +
3 9 * include/qpdf/qpdf-c.h ("C"): add new methods qpdf_get_info_key
4 10 and qpdf_set_info_key for manipulating text fields of the /Info
5 11 dictionary.
... ...
configure.ac
... ... @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
2 2 dnl This config.in requires autoconf 2.5 or greater.
3 3  
4 4 AC_PREREQ(2.60)
5   -AC_INIT(qpdf,2.3.a1)
  5 +AC_INIT(qpdf,2.3.0)
6 6  
7 7 AC_CONFIG_MACRO_DIR([m4])
8 8 AC_CONFIG_FILES([autoconf.mk])
... ...
libqpdf/QPDF.cc
... ... @@ -15,7 +15,7 @@
15 15 #include <qpdf/QPDF_Null.hh>
16 16 #include <qpdf/QPDF_Dictionary.hh>
17 17  
18   -std::string QPDF::qpdf_version = "2.3.a1";
  18 +std::string QPDF::qpdf_version = "2.3.0";
19 19  
20 20 void
21 21 QPDF::InputSource::setLastOffset(off_t offset)
... ...
libqpdf/build.mk
... ... @@ -72,4 +72,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc
72 72 # * Otherwise, increment REVISION
73 73  
74 74 $(TARGETS_libqpdf): $(OBJS_libqpdf)
75   - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),6,1,3)
  75 + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),7,0,4)
... ...
manual/qpdf-manual.xml
... ... @@ -5,8 +5,8 @@
5 5 <!ENTITY mdash "&#x2014;">
6 6 <!ENTITY ndash "&#x2013;">
7 7 <!ENTITY nbsp "&#xA0;">
8   -<!ENTITY swversion "2.3.a1">
9   -<!ENTITY lastreleased "August 10, 2011">
  8 +<!ENTITY swversion "2.3.0">
  9 +<!ENTITY lastreleased "August 11, 2011">
10 10 ]>
11 11 <book>
12 12 <bookinfo>
... ...
qpdf.spec
1 1 Summary: Command-line tools and library for transforming PDF files
2 2 Name: qpdf
3   -Version: 2.3.a1
  3 +Version: 2.3.0
4 4 Release: 1%{?dist}
5 5 License: Artistic
6 6 Group: System Environment/Libraries
... ...