Commit 07acf9175dc10c9a3ed25cf1e9060e972e171406
1 parent
ddaa980c
Bump shared library minor version
Showing
4 changed files
with
10 additions
and
10 deletions
README-maintainer
| ... | ... | @@ -190,6 +190,9 @@ RELEASE PREPARATION |
| 190 | 190 | casting policy in the manual, and ensure that integer types are |
| 191 | 191 | properly handled with QIntC or the appropriate cast. |
| 192 | 192 | |
| 193 | +* Increment shared library version information as needed (`LT_CURRENT` | |
| 194 | + in `configure.ac`). Remember to rerun ./autogen.sh. | |
| 195 | + | |
| 193 | 196 | * Performance test is included with binary compatibility steps. Even |
| 194 | 197 | if releasing a new major release and not doing binary compatibility |
| 195 | 198 | testing, do performance testing. |
| ... | ... | @@ -227,9 +230,6 @@ pytest -n auto |
| 227 | 230 | the entities at the top of the document are consistent with the |
| 228 | 231 | release notes for both version and release date. |
| 229 | 232 | |
| 230 | -* Increment shared library version information as needed (`LT_*` in | |
| 231 | - `configure.ac`). Remember to rerun ./autogen.sh. | |
| 232 | - | |
| 233 | 233 | * Make sure version numbers are consistent in the following locations: |
| 234 | 234 | * configure.ac |
| 235 | 235 | * libqpdf/QPDF.cc | ... | ... |
autofiles.sums
| 1 | -8c57a508cec0f5243dcc0df7b194f7daf85d3f7d7b747747be20ec0d84f3ddaa configure.ac | |
| 1 | +4c790572a470fe3fbcdc3d7b8d14e43c4ace368abda5dbfa1d0a1a3c31d31c9a configure.ac | |
| 2 | 2 | d3f9ee6f6f0846888d9a10fd3dad2e4b1258be84205426cf04d7cef02d61dad7 aclocal.m4 |
| 3 | 3 | cf2c764639c4c94abc183a0976eca6ae500b80790ea25e3d0af97b23587363b7 libqpdf/qpdf/qpdf-config.h.in |
| 4 | 4 | 5297971a0ef90bcd5563eb3f7127a032bb76d3ae2af7258bf13479caf8983a60 m4/ax_cxx_compile_stdcxx.m4 | ... | ... |
configure
| ... | ... | @@ -16208,9 +16208,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu |
| 16208 | 16208 | # * Otherwise, increment LT_REVISION |
| 16209 | 16209 | |
| 16210 | 16210 | # LT = libtool |
| 16211 | -LT_CURRENT=28 | |
| 16212 | -LT_AGE=0 | |
| 16213 | -LT_REVISION=4 | |
| 16211 | +LT_CURRENT=29 | |
| 16212 | +LT_AGE=1 | |
| 16213 | +LT_REVISION=0 | |
| 16214 | 16214 | |
| 16215 | 16215 | |
| 16216 | 16216 | ... | ... |
configure.ac
| ... | ... | @@ -52,9 +52,9 @@ LT_INIT([win32-dll]) |
| 52 | 52 | # * Otherwise, increment LT_REVISION |
| 53 | 53 | |
| 54 | 54 | # LT = libtool |
| 55 | -LT_CURRENT=28 | |
| 56 | -LT_AGE=0 | |
| 57 | -LT_REVISION=4 | |
| 55 | +LT_CURRENT=29 | |
| 56 | +LT_AGE=1 | |
| 57 | +LT_REVISION=0 | |
| 58 | 58 | AC_SUBST(LT_CURRENT) |
| 59 | 59 | AC_SUBST(LT_REVISION) |
| 60 | 60 | AC_SUBST(LT_AGE) | ... | ... |