Commit f96c63cf3d7993077e916ac261ffb237137333e5
1 parent
fc8f9305
2.1.5
git-svn-id: svn+q:///qpdf/trunk@962 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
6 changed files
with
30 additions
and
6 deletions
ChangeLog
| 1 | +2010-04-25 Jay Berkenbilt <ejb@ql.org> | ||
| 2 | + | ||
| 3 | + * 2.1.5: release | ||
| 4 | + | ||
| 5 | + * libqpdf/QPDF_encryption.cc (compute_encryption_key): remove | ||
| 6 | + restrictions on length of file identifier string. (Fixes | ||
| 7 | + qpdf-Bugs-2991412.) | ||
| 8 | + | ||
| 1 | 2010-04-18 Jay Berkenbilt <ejb@ql.org> | 9 | 2010-04-18 Jay Berkenbilt <ejb@ql.org> |
| 2 | 10 | ||
| 3 | * 2.1.4: release | 11 | * 2.1.4: release |
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.60) | 4 | AC_PREREQ(2.60) |
| 5 | -AC_INIT(qpdf,2.1.4) | 5 | +AC_INIT(qpdf,2.1.5) |
| 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
| @@ -15,7 +15,7 @@ | @@ -15,7 +15,7 @@ | ||
| 15 | #include <qpdf/QPDF_Null.hh> | 15 | #include <qpdf/QPDF_Null.hh> |
| 16 | #include <qpdf/QPDF_Dictionary.hh> | 16 | #include <qpdf/QPDF_Dictionary.hh> |
| 17 | 17 | ||
| 18 | -std::string QPDF::qpdf_version = "2.1.4"; | 18 | +std::string QPDF::qpdf_version = "2.1.5"; |
| 19 | 19 | ||
| 20 | void | 20 | void |
| 21 | QPDF::InputSource::setLastOffset(off_t offset) | 21 | QPDF::InputSource::setLastOffset(off_t offset) |
libqpdf/build.mk
| @@ -72,4 +72,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc | @@ -72,4 +72,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc | ||
| 72 | # * Otherwise, increment REVISION | 72 | # * Otherwise, increment REVISION |
| 73 | 73 | ||
| 74 | $(TARGETS_libqpdf): $(OBJS_libqpdf) | 74 | $(TARGETS_libqpdf): $(OBJS_libqpdf) |
| 75 | - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),3,3,0) | 75 | + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),3,4,0) |
manual/qpdf-manual.xml
| @@ -5,8 +5,8 @@ | @@ -5,8 +5,8 @@ | ||
| 5 | <!ENTITY mdash "—"> | 5 | <!ENTITY mdash "—"> |
| 6 | <!ENTITY ndash "–"> | 6 | <!ENTITY ndash "–"> |
| 7 | <!ENTITY nbsp " "> | 7 | <!ENTITY nbsp " "> |
| 8 | -<!ENTITY swversion "2.1.4"> | ||
| 9 | -<!ENTITY lastreleased "April 18, 2010"> | 8 | +<!ENTITY swversion "2.1.5"> |
| 9 | +<!ENTITY lastreleased "April 25, 2010"> | ||
| 10 | ]> | 10 | ]> |
| 11 | <book> | 11 | <book> |
| 12 | <bookinfo> | 12 | <bookinfo> |
| @@ -2072,6 +2072,22 @@ print "\n"; | @@ -2072,6 +2072,22 @@ print "\n"; | ||
| 2072 | </para> | 2072 | </para> |
| 2073 | <variablelist> | 2073 | <variablelist> |
| 2074 | <varlistentry> | 2074 | <varlistentry> |
| 2075 | + <term>2.1.5: April 25, 2010</term> | ||
| 2076 | + <listitem> | ||
| 2077 | + <itemizedlist> | ||
| 2078 | + <listitem> | ||
| 2079 | + <para> | ||
| 2080 | + Remove restriction of file identifier strings to 16 bytes. | ||
| 2081 | + This unnecessary restriction was preventing qpdf from being | ||
| 2082 | + able to encrypt or decrypt files with identifier strings that | ||
| 2083 | + were not exactly 16 bytes long. The specification imposes no | ||
| 2084 | + such restriction. | ||
| 2085 | + </para> | ||
| 2086 | + </listitem> | ||
| 2087 | + </itemizedlist> | ||
| 2088 | + </listitem> | ||
| 2089 | + </varlistentry> | ||
| 2090 | + <varlistentry> | ||
| 2075 | <term>2.1.4: April 18, 2010</term> | 2091 | <term>2.1.4: April 18, 2010</term> |
| 2076 | <listitem> | 2092 | <listitem> |
| 2077 | <itemizedlist> | 2093 | <itemizedlist> |
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: 2.1.4 | 3 | +Version: 2.1.5 |
| 4 | Release: 1%{?dist} | 4 | Release: 1%{?dist} |
| 5 | License: Artistic | 5 | License: Artistic |
| 6 | Group: System Environment/Libraries | 6 | Group: System Environment/Libraries |