Commit 0b6127558d94a8b5ea1cdaca2c58e5b5a0cd1472
1 parent
6067608d
Prepare 5.1.0 release
Showing
5 changed files
with
46 additions
and
5 deletions
ChangeLog
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.68]) |
| 5 | -AC_INIT([qpdf],[5.0.1]) | |
| 5 | +AC_INIT([qpdf],[5.1.0]) | |
| 6 | 6 | |
| 7 | 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | 8 | AC_CONFIG_FILES([autoconf.mk]) | ... | ... |
libqpdf/QPDF.cc
libqpdf/build.mk
| ... | ... | @@ -96,4 +96,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c |
| 96 | 96 | # * Otherwise, increment REVISION |
| 97 | 97 | |
| 98 | 98 | $(TARGETS_libqpdf): $(OBJS_libqpdf) |
| 99 | - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),13,1,0) | |
| 99 | + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),14,0,1) | ... | ... |
manual/qpdf-manual.xml
| ... | ... | @@ -5,8 +5,8 @@ |
| 5 | 5 | <!ENTITY mdash "—"> |
| 6 | 6 | <!ENTITY ndash "–"> |
| 7 | 7 | <!ENTITY nbsp " "> |
| 8 | -<!ENTITY swversion "5.0.1"> | |
| 9 | -<!ENTITY lastreleased "October 18, 2013"> | |
| 8 | +<!ENTITY swversion "5.1.0"> | |
| 9 | +<!ENTITY lastreleased "December 17, 2013"> | |
| 10 | 10 | ]> |
| 11 | 11 | <book> |
| 12 | 12 | <bookinfo> |
| ... | ... | @@ -2666,6 +2666,43 @@ print "\n"; |
| 2666 | 2666 | </para> |
| 2667 | 2667 | <variablelist> |
| 2668 | 2668 | <varlistentry> |
| 2669 | + <term>5.1.0: December 17, 2013</term> | |
| 2670 | + <listitem> | |
| 2671 | + <itemizedlist> | |
| 2672 | + <listitem> | |
| 2673 | + <para> | |
| 2674 | + Added runtime option | |
| 2675 | + (<function>QUtil::setRandomDataProvider</function>) to supply | |
| 2676 | + your own random data provider. You can use this if you want | |
| 2677 | + to avoid using the OS-provided secure random number generation | |
| 2678 | + facility or stdlib's less secure version. See comments in | |
| 2679 | + include/qpdf/QUtil.hh for details. | |
| 2680 | + </para> | |
| 2681 | + </listitem> | |
| 2682 | + <listitem> | |
| 2683 | + <para> | |
| 2684 | + Fixed image comparison tests to not create 12-bit-per-pixel | |
| 2685 | + images since some versions of tiffcmp have bugs in comparing | |
| 2686 | + them in some cases. This increases the disk space required by | |
| 2687 | + the image comparison tests, which are off by default anyway. | |
| 2688 | + </para> | |
| 2689 | + </listitem> | |
| 2690 | + <listitem> | |
| 2691 | + <para> | |
| 2692 | + Introduce a number of small fixes for compilation on the | |
| 2693 | + latest clang in MacOS and the latest Visual C++ in Windows. | |
| 2694 | + </para> | |
| 2695 | + </listitem> | |
| 2696 | + <listitem> | |
| 2697 | + <para> | |
| 2698 | + Be able to handle broken files that end the xref table header | |
| 2699 | + with a space instead of a newline. | |
| 2700 | + </para> | |
| 2701 | + </listitem> | |
| 2702 | + </itemizedlist> | |
| 2703 | + </listitem> | |
| 2704 | + </varlistentry> | |
| 2705 | + <varlistentry> | |
| 2669 | 2706 | <term>5.0.1: October 18, 2013</term> |
| 2670 | 2707 | <listitem> |
| 2671 | 2708 | <itemizedlist> | ... | ... |