Commit 21bef2809489a2215d3b28a6acd124c0914beed3
1 parent
1f5f5592
2.0.1
git-svn-id: svn+q:///qpdf/trunk@624 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
5 changed files
with
39 additions
and
6 deletions
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 | +AC_INIT(qpdf,2.0.1) | |
| 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
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"> | |
| 9 | -<!ENTITY lastreleased "April 29, 2008"> | |
| 8 | +<!ENTITY swversion "2.0.1"> | |
| 9 | +<!ENTITY lastreleased "May 6, 2008"> | |
| 10 | 10 | ]> |
| 11 | 11 | <book> |
| 12 | 12 | <bookinfo> |
| ... | ... | @@ -1961,4 +1961,37 @@ print "\n"; |
| 1961 | 1961 | </para> |
| 1962 | 1962 | </sect1> |
| 1963 | 1963 | </chapter> |
| 1964 | + <appendix id="ref.release-notes"> | |
| 1965 | + <title>Release Notes</title> | |
| 1966 | + <variablelist> | |
| 1967 | + <varlistentry> | |
| 1968 | + <term>2.0.1: May 6, 2008</term> | |
| 1969 | + <listitem> | |
| 1970 | + <itemizedlist> | |
| 1971 | + <listitem> | |
| 1972 | + <para> | |
| 1973 | + No changes in functionality or interface. This release | |
| 1974 | + includes fixes to the source code so that qpdf compiles | |
| 1975 | + properly and passes its test suite on a broader range of | |
| 1976 | + platforms. See <filename>ChangeLog</filename> in the source | |
| 1977 | + distribution for details. | |
| 1978 | + </para> | |
| 1979 | + </listitem> | |
| 1980 | + </itemizedlist> | |
| 1981 | + </listitem> | |
| 1982 | + </varlistentry> | |
| 1983 | + <varlistentry> | |
| 1984 | + <term>2.0: April 29, 2008</term> | |
| 1985 | + <listitem> | |
| 1986 | + <itemizedlist> | |
| 1987 | + <listitem> | |
| 1988 | + <para> | |
| 1989 | + First public release. | |
| 1990 | + </para> | |
| 1991 | + </listitem> | |
| 1992 | + </itemizedlist> | |
| 1993 | + </listitem> | |
| 1994 | + </varlistentry> | |
| 1995 | + </variablelist> | |
| 1996 | + </appendix> | |
| 1964 | 1997 | </book> | ... | ... |
qpdf.spec
qpdf/qpdf.cc
| ... | ... | @@ -447,7 +447,7 @@ int main(int argc, char* argv[]) |
| 447 | 447 | // 1 2 3 4 5 6 7 8 |
| 448 | 448 | // 12345678901234567890123456789012345678901234567890123456789012345678901234567890 |
| 449 | 449 | std::cout |
| 450 | - << whoami << " version 2.0" << std::endl | |
| 450 | + << whoami << " version 2.0.1" << std::endl | |
| 451 | 451 | << "Copyright (c) 2005-2008 Jay Berkenbilt" |
| 452 | 452 | << std::endl |
| 453 | 453 | << "This software may be distributed under the terms of version 2 of the" | ... | ... |