diff --git a/.cproject b/.cproject index 5dbc539..c16e6be 100644 --- a/.cproject +++ b/.cproject @@ -18,7 +18,7 @@ - + @@ -36,12 +36,14 @@ - + + @@ -76,7 +78,7 @@ - + @@ -97,6 +99,7 @@ diff --git a/.gitignore b/.gitignore index b22fdbb..16b0907 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /config.guess~ /config.sub~ /configure~ +/install-sh~ diff --git a/ChangeLog b/ChangeLog index b88a0da..2024886 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +06/05/2024 +- depend on liboauth2 >= 1.6.2 +- release 3.5.0 + 12/06/2023 - add support for the client credentials grant type - depend on liboauth >= 1.6.0 diff --git a/configure.ac b/configure.ac index 5f01be1..72ffdf6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([mod_sts],[3.4.0],[hans.zandbelt@openidc.com]) +AC_INIT([mod_sts],[3.5.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.6.0]) +PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.6.2]) AC_SUBST(OAUTH2_CFLAGS) AC_SUBST(OAUTH2_LIBS) -PKG_CHECK_MODULES(OAUTH2_APACHE, [liboauth2_apache >= 1.6.0]) +PKG_CHECK_MODULES(OAUTH2_APACHE, [liboauth2_apache >= 1.6.2]) AC_SUBST(OAUTH2_APACHE_CFLAGS) AC_SUBST(OAUTH2_APACHE_LIBS)