Commit 59432b5c702809413ae6733ed6ccd5e589d37428

Authored by Jay Berkenbilt
1 parent e4076762

Prepare 3.0.1 release

ChangeLog
1 2012-08-11 Jay Berkenbilt <ejb@ql.org> 1 2012-08-11 Jay Berkenbilt <ejb@ql.org>
2 2
  3 + * 3.0.1: release
  4 +
3 * Bug fix: let EOF terminate a literal token as well as 5 * Bug fix: let EOF terminate a literal token as well as
4 whitespace or comments. 6 whitespace or comments.
5 7
1 -Next  
2 -====  
3 -  
4 - * Update release notes for 3.0.0 to mention pkg-config support. Also  
5 - mention in latest release notes including that it was inadvertently  
6 - left out of the release notes for 3.0.0.  
7 -  
8 -  
9 General 1 General
10 ======= 2 =======
11 3
configure.ac
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
2 dnl This config.in requires autoconf 2.5 or greater. 2 dnl This config.in requires autoconf 2.5 or greater.
3 3
4 AC_PREREQ([2.68]) 4 AC_PREREQ([2.68])
5 -AC_INIT([qpdf],[3.0.0]) 5 +AC_INIT([qpdf],[3.0.1])
6 6
7 AC_CONFIG_MACRO_DIR([m4]) 7 AC_CONFIG_MACRO_DIR([m4])
8 AC_CONFIG_FILES([autoconf.mk]) 8 AC_CONFIG_FILES([autoconf.mk])
libqpdf/QPDF.cc
@@ -18,7 +18,7 @@ @@ -18,7 +18,7 @@
18 #include <qpdf/QPDF_Null.hh> 18 #include <qpdf/QPDF_Null.hh>
19 #include <qpdf/QPDF_Dictionary.hh> 19 #include <qpdf/QPDF_Dictionary.hh>
20 20
21 -std::string QPDF::qpdf_version = "3.0.0"; 21 +std::string QPDF::qpdf_version = "3.0.1";
22 22
23 static char const* EMPTY_PDF = 23 static char const* EMPTY_PDF =
24 "%PDF-1.3\n" 24 "%PDF-1.3\n"
libqpdf/build.mk
@@ -80,4 +80,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc @@ -80,4 +80,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc
80 # * Otherwise, increment REVISION 80 # * Otherwise, increment REVISION
81 81
82 $(TARGETS_libqpdf): $(OBJS_libqpdf) 82 $(TARGETS_libqpdf): $(OBJS_libqpdf)
83 - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),8,1,0) 83 + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),8,2,0)
manual/qpdf-manual.xml
@@ -5,8 +5,8 @@ @@ -5,8 +5,8 @@
5 <!ENTITY mdash "&#x2014;"> 5 <!ENTITY mdash "&#x2014;">
6 <!ENTITY ndash "&#x2013;"> 6 <!ENTITY ndash "&#x2013;">
7 <!ENTITY nbsp "&#xA0;"> 7 <!ENTITY nbsp "&#xA0;">
8 -<!ENTITY swversion "3.0.0">  
9 -<!ENTITY lastreleased "August 2, 2012"> 8 +<!ENTITY swversion "3.0.1">
  9 +<!ENTITY lastreleased "August 11, 2012">
10 ]> 10 ]>
11 <book> 11 <book>
12 <bookinfo> 12 <bookinfo>
@@ -2383,6 +2383,31 @@ print &quot;\n&quot;; @@ -2383,6 +2383,31 @@ print &quot;\n&quot;;
2383 </para> 2383 </para>
2384 <variablelist> 2384 <variablelist>
2385 <varlistentry> 2385 <varlistentry>
  2386 + <term>3.0.1: August 11, 2012</term>
  2387 + <listitem>
  2388 + <itemizedlist>
  2389 + <listitem>
  2390 + <para>
  2391 + Version 3.0.0 included addition of files for
  2392 + <command>pkg-config</command>, but this was not mentioned in
  2393 + the release notes. The release notes for 3.0.0 were updated
  2394 + to mention this.
  2395 + </para>
  2396 + </listitem>
  2397 + <listitem>
  2398 + <para>
  2399 + Bug fix: if an object stream ended with a scalar object not
  2400 + followed by space, qpdf would incorrectly report that it
  2401 + encountered a premature EOF. This bug has been in qpdf since
  2402 + version&nbsp;2.0.
  2403 + </para>
  2404 + </listitem>
  2405 + </itemizedlist>
  2406 + </listitem>
  2407 + </varlistentry>
  2408 + </variablelist>
  2409 + <variablelist>
  2410 + <varlistentry>
2386 <term>3.0.0: August 2, 2012</term> 2411 <term>3.0.0: August 2, 2012</term>
2387 <listitem> 2412 <listitem>
2388 <itemizedlist> 2413 <itemizedlist>
@@ -2501,6 +2526,12 @@ print &quot;\n&quot;; @@ -2501,6 +2526,12 @@ print &quot;\n&quot;;
2501 </listitem> 2526 </listitem>
2502 <listitem> 2527 <listitem>
2503 <para> 2528 <para>
  2529 + The file <filename>libqpdf.pc</filename> is now installed to
  2530 + support <command>pkg-config</command>.
  2531 + </para>
  2532 + </listitem>
  2533 + <listitem>
  2534 + <para>
2504 Image comparison tests are off by default now since they are 2535 Image comparison tests are off by default now since they are
2505 not needed to verify a correct build or port of qpdf. They 2536 not needed to verify a correct build or port of qpdf. They
2506 are needed only when changing the actual PDF output generated 2537 are needed only when changing the actual PDF output generated
qpdf.spec
1 Summary: Command-line tools and library for transforming PDF files 1 Summary: Command-line tools and library for transforming PDF files
2 Name: qpdf 2 Name: qpdf
3 -Version: 3.0.0 3 +Version: 3.0.1
4 Release: 1%{?dist} 4 Release: 1%{?dist}
5 License: Artistic 5 License: Artistic
6 Group: System Environment/Libraries 6 Group: System Environment/Libraries