Commit c595fd7fbf987ed30377db3d79786c2061aad922

Authored by Jay Berkenbilt
1 parent b36f62a3

2.2.2

git-svn-id: svn+q:///qpdf/trunk@1045 71b93d88-0707-0410-a8cf-f5a4172ac649
ChangeLog
  1 +2010-10-04 Jay Berkenbilt <ejb@ql.org>
  2 +
  3 + * 2.2.2: release
  4 +
  5 + * include/qpdf/qpdf-c.h: Add qpdf_read_memory to C API to call
  6 + QPDF::processMemoryFile.
  7 +
1 8 2010-10-01 Jay Berkenbilt <ejb@ql.org>
2 9  
3 10 * 2.2.1: release
... ...
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.2.1)
  5 +AC_INIT(qpdf,2.2.2)
6 6  
7 7 AC_CONFIG_MACRO_DIR([m4])
8 8 AC_CONFIG_FILES([autoconf.mk])
... ...
libqpdf/QPDF.cc
... ... @@ -15,7 +15,7 @@
15 15 #include <qpdf/QPDF_Null.hh>
16 16 #include <qpdf/QPDF_Dictionary.hh>
17 17  
18   -std::string QPDF::qpdf_version = "2.2.1";
  18 +std::string QPDF::qpdf_version = "2.2.2";
19 19  
20 20 void
21 21 QPDF::InputSource::setLastOffset(off_t offset)
... ...
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),5,0,2)
  75 + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),6,0,3)
... ...
qpdf.spec
1 1 Summary: Command-line tools and library for transforming PDF files
2 2 Name: qpdf
3   -Version: 2.2.1
  3 +Version: 2.2.2
4 4 Release: 1%{?dist}
5 5 License: Artistic
6 6 Group: System Environment/Libraries
... ...