From 6600ced31f085eda119ad73c847fcafbd59347a2 Mon Sep 17 00:00:00 2001 From: Hans Zandbelt Date: Wed, 5 Jun 2024 20:11:43 +0200 Subject: [PATCH] release 3.4.0: depend on liboauth2 >= 1.6.2 Signed-off-by: Hans Zandbelt --- .cproject | 17 ++++++++--------- .gitignore | 1 + ChangeLog | 4 ++++ configure.ac | 6 +++--- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/.cproject b/.cproject index 36119ee..85c211a 100644 --- a/.cproject +++ b/.cproject @@ -18,7 +18,7 @@ - + @@ -34,17 +34,16 @@ @@ -79,7 +78,7 @@ - + @@ -100,7 +99,7 @@ diff --git a/.gitignore b/.gitignore index 0fa19c5..675243c 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /config.guess~ /config.sub~ /configure~ +/install-sh~ diff --git a/ChangeLog b/ChangeLog index 50c417c..05fb64e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +06/05/2024 +- depend on liboauth2 >= 1.6.2 +- release 3.4.0 + 10/25/2023 - correct documentation wrt. cache encryption passphrase; see #52; thanks @webermax - depend on liboauth2 >= 1.5.1; see https://github.com/OpenIDC/liboauth2/issues/44 diff --git a/configure.ac b/configure.ac index 0438a7d..36e6009 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([mod_oauth2],[3.3.2],[hans.zandbelt@openidc.com]) +AC_INIT([mod_oauth2],[3.4.0],[hans.zandbelt@openidc.com]) AM_INIT_AUTOMAKE([foreign no-define subdir-objects]) AC_CONFIG_MACRO_DIRS([m4]) @@ -27,11 +27,11 @@ AC_SUBST(APR_LIBS) AC_SUBST(APACHE_CFLAGS) AC_ARG_VAR(APXS_OPTS, [additional command line options to pass to apxs]) -PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.5.1]) +PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.6.2]) AC_SUBST(OAUTH2_CFLAGS) AC_SUBST(OAUTH2_LIBS) -PKG_CHECK_MODULES(OAUTH2_APACHE, [liboauth2_apache >= 1.5.1]) +PKG_CHECK_MODULES(OAUTH2_APACHE, [liboauth2_apache >= 1.6.2]) AC_SUBST(OAUTH2_APACHE_CFLAGS) AC_SUBST(OAUTH2_APACHE_LIBS)