Commit 9f93c89ee59b2ebc04a15a9f24cdaf9f513a28c1
1 parent
caad0897
update copyright, release 2.0.3
git-svn-id: svn+q:///qpdf/trunk@644 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
25 changed files
with
33 additions
and
27 deletions
ChangeLog
README
| 1 | 1 | This is the QPDF package. Information about it can be found at |
| 2 | 2 | http://qpdf.qbilt.org. |
| 3 | 3 | |
| 4 | -QPDF is copyright (c) 2005-2008 Jay Berkenbilt | |
| 4 | +QPDF is copyright (c) 2005-2009 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
| ... | ... | @@ -16,7 +16,7 @@ Release Reminders |
| 16 | 16 | make_dist verifies this consistency. |
| 17 | 17 | |
| 18 | 18 | * Each year, update copyright notices. Just search for Copyright. |
| 19 | - Last updated: 2008. | |
| 19 | + Last updated: 2009. | |
| 20 | 20 | |
| 21 | 21 | * To construct a source distribution from a pristine checkout, |
| 22 | 22 | make_dist does the following: |
| ... | ... | @@ -36,6 +36,8 @@ Release Reminders |
| 36 | 36 | * Remember to update documentation in the "files" subdirectory of the |
| 37 | 37 | website on sourceforge.net. |
| 38 | 38 | |
| 39 | + * Create a tag in the version control system. | |
| 40 | + | |
| 39 | 41 | General Build Stuff |
| 40 | 42 | =================== |
| 41 | 43 | ... | ... |
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.2) | |
| 5 | +AC_INIT(qpdf,2.0.3) | |
| 6 | 6 | |
| 7 | 7 | dnl No AC_CONFIG_HEADERS. If this changes, update README.maintainer. |
| 8 | 8 | AC_CONFIG_FILES([autoconf.mk]) | ... | ... |
include/qpdf/Buffer.hh
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/QEXC.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
manual/qpdf-manual.xml
| ... | ... | @@ -5,8 +5,8 @@ |
| 5 | 5 | <!ENTITY mdash "—"> |
| 6 | 6 | <!ENTITY ndash "–"> |
| 7 | 7 | <!ENTITY nbsp " "> |
| 8 | -<!ENTITY swversion "2.0.2"> | |
| 9 | -<!ENTITY lastreleased "June 30, 2008"> | |
| 8 | +<!ENTITY swversion "2.0.3"> | |
| 9 | +<!ENTITY lastreleased "February 15, 2009"> | |
| 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–2008</year> | |
| 19 | + <year>2005–2009</year> | |
| 20 | 20 | <holder>Jay Berkenbilt</holder> |
| 21 | 21 | </copyright> |
| 22 | 22 | </bookinfo> | ... | ... |
qpdf.spec
qpdf/qpdf.cc
| ... | ... | @@ -449,8 +449,8 @@ int main(int argc, char* argv[]) |
| 449 | 449 | // 1 2 3 4 5 6 7 8 |
| 450 | 450 | // 12345678901234567890123456789012345678901234567890123456789012345678901234567890 |
| 451 | 451 | std::cout |
| 452 | - << whoami << " version 2.0.2" << std::endl | |
| 453 | - << "Copyright (c) 2005-2008 Jay Berkenbilt" | |
| 452 | + << whoami << " version 2.0.3" << std::endl | |
| 453 | + << "Copyright (c) 2005-2009 Jay Berkenbilt" | |
| 454 | 454 | << std::endl |
| 455 | 455 | << "This software may be distributed under the terms of version 2 of the" |
| 456 | 456 | << std::endl | ... | ... |