Commit f02c5f5e12b9e35974dfb4450264d7eb29c8f7b1
1 parent
403bb68d
Final preparation for 4.1.0 release
Showing
6 changed files
with
8 additions
and
10 deletions
ChangeLog
README.maintainer
| ... | ... | @@ -104,7 +104,7 @@ Release Reminders |
| 104 | 104 | * Create a tag in the version control system, and make backups of the |
| 105 | 105 | actual releases. With git, use git tag -s to create a signed tag: |
| 106 | 106 | |
| 107 | - git tag -s release-qpdf-$version HEAD -m'qpdf $version' | |
| 107 | + git tag -s release-qpdf-$version HEAD -m"qpdf $version" | |
| 108 | 108 | |
| 109 | 109 | * When releasing on sourceforge, external-libs distributions go in |
| 110 | 110 | external-libs/yyyymmdd, and qpdf distributions go in qpdf/vvv. | ... | ... |
TODO
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.0.1]) | |
| 5 | +AC_INIT([qpdf],[4.1.0]) | |
| 6 | 6 | |
| 7 | 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | 8 | AC_CONFIG_FILES([autoconf.mk]) | ... | ... |
libqpdf/QPDF.cc
libqpdf/build.mk
| ... | ... | @@ -93,4 +93,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c |
| 93 | 93 | # * Otherwise, increment REVISION |
| 94 | 94 | |
| 95 | 95 | $(TARGETS_libqpdf): $(OBJS_libqpdf) |
| 96 | - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),10,1,0) | |
| 96 | + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),11,0,1) | ... | ... |