diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2016-04-28 13:54:30 +0200 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2016-04-28 13:54:30 +0200 |
commit | 1cad9fb2a0d729c5b5e5aa7297c521df7d5a2d33 (patch) | |
tree | 9613ec1bf8595ae61e6c99a5646b7a3c3f9dc91f | |
parent | bfe2beddad0ae45e0405a60838107306acc87ff7 (diff) | |
download | pam-1cad9fb2a0d729c5b5e5aa7297c521df7d5a2d33.tar.gz pam-1cad9fb2a0d729c5b5e5aa7297c521df7d5a2d33.tar.bz2 pam-1cad9fb2a0d729c5b5e5aa7297c521df7d5a2d33.zip |
Release version 1.3.0
* NEWS: add changes for 1.3.0.
* configure.ac: bump version number.
* libpam/Makefile.am: bump revision of libpam.so version.
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | libpam/Makefile.am | 2 |
3 files changed, 14 insertions, 2 deletions
@@ -1,8 +1,19 @@ Linux-PAM NEWS -- history of user-visible changes. +Release 1.3.0 +* Remove of static modules support +* pam_unix: pass_not_set was removed +* Lot of documentation fixes +* Use TI-RPC function calls if we build against libtirpc +* Add support for new, IPv6 enabled libnsl +* Lot of bug fixes +* Use fedora.zanata.org for translations + + Release 1.2.1 * Fix CVE-2015-3238, affected PAM modules are pam_unix and pam_exec + Release 1.2.0 * Update documentation * Update translations @@ -13,6 +24,7 @@ Release 1.2.0 * libpam: add grantor field to audit records * libpam: Introduce pam_modutil_sanitize_helper_fds + Release 1.1.8 * pam_unix: bug fix for compiling with SELinux, fix crash at login time diff --git a/configure.ac b/configure.ac index b377e563..6380fa1d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([Linux-PAM], [1.2.1], , [Linux-PAM]) +AC_INIT([Linux-PAM], [1.3.0], , [Linux-PAM]) AC_CONFIG_SRCDIR([conf/pam_conv1/pam_conv_y.y]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([-Wall -Wno-portability]) diff --git a/libpam/Makefile.am b/libpam/Makefile.am index 04a8df0f..638bb5c4 100644 --- a/libpam/Makefile.am +++ b/libpam/Makefile.am @@ -20,7 +20,7 @@ include_HEADERS = include/security/_pam_compat.h \ noinst_HEADERS = pam_prelude.h pam_private.h pam_tokens.h \ pam_modutil_private.h -libpam_la_LDFLAGS = -no-undefined -version-info 84:1:84 +libpam_la_LDFLAGS = -no-undefined -version-info 84:2:84 libpam_la_LIBADD = @LIBAUDIT@ $(LIBPRELUDE_LIBS) @LIBDL@ if HAVE_VERSIONING |