Commit 66e63b86675076e858bd8970360d1b2b8c57bc7c

Authored by Jay Berkenbilt
1 parent 2ab49244

Prepare 5.0.0 release

ChangeLog
1 1 2013-07-10 Jay Berkenbilt <ejb@ql.org>
2 2  
  3 + * 5.0.0: release
  4 +
3 5 * 4.2.0 turned out to be binary incompatible on some platforms
4 6 even though there were no changes to the public API. Therefore
5 7 the 4.2.0 release has been withdrawn, and is being replaced with a
... ...
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],[4.2.0])
  5 +AC_INIT([qpdf],[5.0.0])
6 6  
7 7 AC_CONFIG_MACRO_DIR([m4])
8 8 AC_CONFIG_FILES([autoconf.mk])
... ...
libqpdf/QPDF.cc
... ... @@ -19,7 +19,7 @@
19 19 #include <qpdf/QPDF_Null.hh>
20 20 #include <qpdf/QPDF_Dictionary.hh>
21 21  
22   -std::string QPDF::qpdf_version = "4.2.0";
  22 +std::string QPDF::qpdf_version = "5.0.0";
23 23  
24 24 static char const* EMPTY_PDF =
25 25 "%PDF-1.3\n"
... ...
libqpdf/build.mk
... ... @@ -94,4 +94,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c
94 94 # * Otherwise, increment REVISION
95 95  
96 96 $(TARGETS_libqpdf): $(OBJS_libqpdf)
97   - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),12,0,2)
  97 + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),13,0,0)
... ...