Commit c551b972f6b9d365cb7f808a801dbfac409cc8b7
1 parent
6405d392
update version to 2.2.3, update copyright to 2011
git-svn-id: svn+q:///qpdf/trunk@1051 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
29 changed files
with
52 additions
and
30 deletions
ChangeLog
README
| 1 | 1 | This is the QPDF package. Information about it can be found at |
| 2 | 2 | http://qpdf.sourceforge.net. |
| 3 | 3 | |
| 4 | -QPDF is copyright (c) 2005-2010 Jay Berkenbilt | |
| 4 | +QPDF is copyright (c) 2005-2011 Jay Berkenbilt | |
| 5 | 5 | |
| 6 | 6 | This software may be distributed under the terms of version 2 of the |
| 7 | 7 | Artistic License which may be found in the source distribution as | ... | ... |
README.maintainer
| ... | ... | @@ -27,7 +27,7 @@ Release Reminders |
| 27 | 27 | done or retargeted. |
| 28 | 28 | |
| 29 | 29 | * Each year, update copyright notices. Just search for Copyright. |
| 30 | - Last updated: 2010. | |
| 30 | + Last updated: 2011. | |
| 31 | 31 | |
| 32 | 32 | * To construct a source distribution from a pristine checkout, |
| 33 | 33 | make_dist does the following: | ... | ... |
configure.ac
include/qpdf/Buffer.hh
include/qpdf/Constants.h
include/qpdf/DLL.h
include/qpdf/Pipeline.hh
include/qpdf/Pl_Buffer.hh
include/qpdf/Pl_Count.hh
include/qpdf/Pl_Discard.hh
include/qpdf/Pl_Flate.hh
include/qpdf/Pl_StdioFile.hh
include/qpdf/PointerHolder.hh
include/qpdf/QPDF.hh
include/qpdf/QPDFExc.hh
include/qpdf/QPDFObject.hh
include/qpdf/QPDFObjectHandle.hh
include/qpdf/QPDFTokenizer.hh
include/qpdf/QPDFWriter.hh
include/qpdf/QPDFXRefEntry.hh
include/qpdf/QTC.hh
include/qpdf/QUtil.hh
include/qpdf/qpdf-c.h
libqpdf/QPDF.cc
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,0,3) | |
| 75 | + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),6,1,3) | ... | ... |
manual/qpdf-manual.xml
| ... | ... | @@ -5,8 +5,8 @@ |
| 5 | 5 | <!ENTITY mdash "—"> |
| 6 | 6 | <!ENTITY ndash "–"> |
| 7 | 7 | <!ENTITY nbsp " "> |
| 8 | -<!ENTITY swversion "2.2.2"> | |
| 9 | -<!ENTITY lastreleased "October 4, 2010"> | |
| 8 | +<!ENTITY swversion "2.2.3"> | |
| 9 | +<!ENTITY lastreleased "April 30, 2011"> | |
| 10 | 10 | ]> |
| 11 | 11 | <book> |
| 12 | 12 | <bookinfo> |
| ... | ... | @@ -16,7 +16,7 @@ |
| 16 | 16 | <firstname>Jay</firstname><surname>Berkenbilt</surname> |
| 17 | 17 | </author> |
| 18 | 18 | <copyright> |
| 19 | - <year>2005–2010</year> | |
| 19 | + <year>2005–2011</year> | |
| 20 | 20 | <holder>Jay Berkenbilt</holder> |
| 21 | 21 | </copyright> |
| 22 | 22 | </bookinfo> |
| ... | ... | @@ -2075,6 +2075,26 @@ print "\n"; |
| 2075 | 2075 | </para> |
| 2076 | 2076 | <variablelist> |
| 2077 | 2077 | <varlistentry> |
| 2078 | + <term>2.2.3: April 30, 2011</term> | |
| 2079 | + <listitem> | |
| 2080 | + <itemizedlist> | |
| 2081 | + <listitem> | |
| 2082 | + <para> | |
| 2083 | + Improve handling of inline images when normalizing content | |
| 2084 | + streams. | |
| 2085 | + </para> | |
| 2086 | + </listitem> | |
| 2087 | + <listitem> | |
| 2088 | + <para> | |
| 2089 | + Enhance error recovery to properly handle files that use | |
| 2090 | + object 0 as a regular object, which is specifically disallowed | |
| 2091 | + by the spec. | |
| 2092 | + </para> | |
| 2093 | + </listitem> | |
| 2094 | + </itemizedlist> | |
| 2095 | + </listitem> | |
| 2096 | + </varlistentry> | |
| 2097 | + <varlistentry> | |
| 2078 | 2098 | <term>2.2.2: October 4, 2010</term> |
| 2079 | 2099 | <listitem> |
| 2080 | 2100 | <itemizedlist> | ... | ... |
qpdf.spec
qpdf/qpdf.cc
| ... | ... | @@ -556,7 +556,7 @@ int main(int argc, char* argv[]) |
| 556 | 556 | // 12345678901234567890123456789012345678901234567890123456789012345678901234567890 |
| 557 | 557 | std::cout |
| 558 | 558 | << whoami << " version " << QPDF::QPDFVersion() << std::endl |
| 559 | - << "Copyright (c) 2005-2010 Jay Berkenbilt" | |
| 559 | + << "Copyright (c) 2005-2011 Jay Berkenbilt" | |
| 560 | 560 | << std::endl |
| 561 | 561 | << "This software may be distributed under the terms of version 2 of the" |
| 562 | 562 | << std::endl | ... | ... |