Commit 701e6db7b09827f13f007bd73c190a057fc96ba2

Authored by Jay Berkenbilt
1 parent 88f44896

2.0.6

git-svn-id: svn+q:///qpdf/trunk@673 71b93d88-0707-0410-a8cf-f5a4172ac649
ChangeLog
  1 +2009-05-03 Jay Berkenbilt <ejb@ql.org>
  2 +
  3 + * 2.0.6. release
  4 +
  5 + * libqpdf/QPDF_Stream.cc (filterable): ignore /DecodeParms if it's
  6 + not a type we recognize. (Fixes qpdf-Bugs-2779746.)
  7 +
1 8 2009-03-10 Jay Berkenbilt <ejb@ql.org>
2 9  
3 10 * 2.0.5: release
... ...
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.0.5)
  5 +AC_INIT(qpdf,2.0.6)
6 6  
7 7 dnl No AC_CONFIG_HEADERS. If this changes, update README.maintainer.
8 8 AC_CONFIG_FILES([autoconf.mk])
... ...
libqpdf/build.mk
... ... @@ -69,5 +69,5 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.lo: libqpdf/%.cc
69 69 # * Otherwise, increment REVISION
70 70  
71 71 libqpdf/$(OUTPUT_DIR)/libqpdf.la: $(OBJS_libqpdf)
72   - $(call makelib,$(OBJS_libqpdf),$@,2,0,1)
  72 + $(call makelib,$(OBJS_libqpdf),$@,2,1,1)
73 73  
... ...
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.0.5">
9   -<!ENTITY lastreleased "March 9, 2009">
  8 +<!ENTITY swversion "2.0.6">
  9 +<!ENTITY lastreleased "May 3, 2009">
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.0.5
  3 +Version: 2.0.6
4 4 Release: 1%{?dist}
5 5 License: Artistic
6 6 Group: System Environment/Libraries
... ...
qpdf/qpdf.cc
... ... @@ -456,7 +456,7 @@ int main(int argc, char* argv[])
456 456 // 1 2 3 4 5 6 7 8
457 457 // 12345678901234567890123456789012345678901234567890123456789012345678901234567890
458 458 std::cout
459   - << whoami << " version 2.0.5" << std::endl
  459 + << whoami << " version 2.0.6" << std::endl
460 460 << "Copyright (c) 2005-2009 Jay Berkenbilt"
461 461 << std::endl
462 462 << "This software may be distributed under the terms of version 2 of the"
... ...