Commit 66e63b86675076e858bd8970360d1b2b8c57bc7c
1 parent
2ab49244
Prepare 5.0.0 release
Showing
4 changed files
with
5 additions
and
3 deletions
ChangeLog
| 1 | 2013-07-10 Jay Berkenbilt <ejb@ql.org> | 1 | 2013-07-10 Jay Berkenbilt <ejb@ql.org> |
| 2 | 2 | ||
| 3 | + * 5.0.0: release | ||
| 4 | + | ||
| 3 | * 4.2.0 turned out to be binary incompatible on some platforms | 5 | * 4.2.0 turned out to be binary incompatible on some platforms |
| 4 | even though there were no changes to the public API. Therefore | 6 | even though there were no changes to the public API. Therefore |
| 5 | the 4.2.0 release has been withdrawn, and is being replaced with a | 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,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | ||
| 2 | dnl This config.in requires autoconf 2.5 or greater. | 2 | dnl This config.in requires autoconf 2.5 or greater. |
| 3 | 3 | ||
| 4 | AC_PREREQ([2.68]) | 4 | AC_PREREQ([2.68]) |
| 5 | -AC_INIT([qpdf],[4.2.0]) | 5 | +AC_INIT([qpdf],[5.0.0]) |
| 6 | 6 | ||
| 7 | AC_CONFIG_MACRO_DIR([m4]) | 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | AC_CONFIG_FILES([autoconf.mk]) | 8 | AC_CONFIG_FILES([autoconf.mk]) |
libqpdf/QPDF.cc
| @@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
| 19 | #include <qpdf/QPDF_Null.hh> | 19 | #include <qpdf/QPDF_Null.hh> |
| 20 | #include <qpdf/QPDF_Dictionary.hh> | 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 | static char const* EMPTY_PDF = | 24 | static char const* EMPTY_PDF = |
| 25 | "%PDF-1.3\n" | 25 | "%PDF-1.3\n" |
libqpdf/build.mk
| @@ -94,4 +94,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c | @@ -94,4 +94,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c | ||
| 94 | # * Otherwise, increment REVISION | 94 | # * Otherwise, increment REVISION |
| 95 | 95 | ||
| 96 | $(TARGETS_libqpdf): $(OBJS_libqpdf) | 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) |