Commit c9bc8937e5b0d4921ed1e220536d8cf51c4faa71
1 parent
6f216135
prepare for 2.0.5 release
git-svn-id: svn+q:///qpdf/trunk@667 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
7 changed files
with
9 additions
and
6 deletions
ChangeLog
| 1 | 2009-03-09 Jay Berkenbilt <ejb@ql.org> | 1 | 2009-03-09 Jay Berkenbilt <ejb@ql.org> |
| 2 | 2 | ||
| 3 | + * 2.0.5: release | ||
| 4 | + | ||
| 3 | * libqpdf/Pl_LZWDecoder.cc: adjust LZWDecoder full table | 5 | * libqpdf/Pl_LZWDecoder.cc: adjust LZWDecoder full table |
| 4 | detection, now having been able to adequately test boundary | 6 | detection, now having been able to adequately test boundary |
| 5 | conditions both and with and without early code change. Also | 7 | conditions both and with and without early code change. Also |
README.maintainer
| @@ -2,6 +2,7 @@ Release Reminders | @@ -2,6 +2,7 @@ Release Reminders | ||
| 2 | ================= | 2 | ================= |
| 3 | 3 | ||
| 4 | * Increment shared library version information as needed | 4 | * Increment shared library version information as needed |
| 5 | + (libqpdf/build.mk) | ||
| 5 | 6 | ||
| 6 | * Add a release entry to ChangeLog | 7 | * Add a release entry to ChangeLog |
| 7 | 8 |
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.0.4) | 5 | +AC_INIT(qpdf,2.0.5) |
| 6 | 6 | ||
| 7 | dnl No AC_CONFIG_HEADERS. If this changes, update README.maintainer. | 7 | dnl No AC_CONFIG_HEADERS. If this changes, update README.maintainer. |
| 8 | AC_CONFIG_FILES([autoconf.mk]) | 8 | AC_CONFIG_FILES([autoconf.mk]) |
libqpdf/build.mk
| @@ -69,5 +69,5 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.lo: libqpdf/%.cc | @@ -69,5 +69,5 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.lo: libqpdf/%.cc | ||
| 69 | # * Otherwise, increment REVISION | 69 | # * Otherwise, increment REVISION |
| 70 | 70 | ||
| 71 | libqpdf/$(OUTPUT_DIR)/libqpdf.la: $(OBJS_libqpdf) | 71 | libqpdf/$(OUTPUT_DIR)/libqpdf.la: $(OBJS_libqpdf) |
| 72 | - $(call makelib,$(OBJS_libqpdf),$@,1,2,0) | 72 | + $(call makelib,$(OBJS_libqpdf),$@,2,0,1) |
| 73 | 73 |
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.0.4"> | ||
| 9 | -<!ENTITY lastreleased "February 21, 2009"> | 8 | +<!ENTITY swversion "2.0.5"> |
| 9 | +<!ENTITY lastreleased "March 9, 2009"> | ||
| 10 | ]> | 10 | ]> |
| 11 | <book> | 11 | <book> |
| 12 | <bookinfo> | 12 | <bookinfo> |
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.0.4 | 3 | +Version: 2.0.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 |
qpdf/qpdf.cc
| @@ -456,7 +456,7 @@ int main(int argc, char* argv[]) | @@ -456,7 +456,7 @@ int main(int argc, char* argv[]) | ||
| 456 | // 1 2 3 4 5 6 7 8 | 456 | // 1 2 3 4 5 6 7 8 |
| 457 | // 12345678901234567890123456789012345678901234567890123456789012345678901234567890 | 457 | // 12345678901234567890123456789012345678901234567890123456789012345678901234567890 |
| 458 | std::cout | 458 | std::cout |
| 459 | - << whoami << " version 2.0.4+" << std::endl | 459 | + << whoami << " version 2.0.5" << std::endl |
| 460 | << "Copyright (c) 2005-2009 Jay Berkenbilt" | 460 | << "Copyright (c) 2005-2009 Jay Berkenbilt" |
| 461 | << std::endl | 461 | << std::endl |
| 462 | << "This software may be distributed under the terms of version 2 of the" | 462 | << "This software may be distributed under the terms of version 2 of the" |