aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2024-10-23 08:00:00 +0000
committerDmitry V. Levin <ldv@strace.io>2024-10-23 08:00:00 +0000
commitdf9df02295a7832679705bbd79acc9c2f51bf8bc (patch)
tree212c0f58814af980478bd50868bb592fae384ff7
parent613e59dca7034168bab4b9f6a89dd864957f0426 (diff)
downloadpam-df9df02295a7832679705bbd79acc9c2f51bf8bc.tar.gz
pam-df9df02295a7832679705bbd79acc9c2f51bf8bc.tar.bz2
pam-df9df02295a7832679705bbd79acc9c2f51bf8bc.zip
Prepare for 1.7.0 release
* meson.build: Raise project version to 1.7.0. * po/meson.build: Likewise. * po/Linux-PAM.pot (Project-Id-Version): Likewise. * libpam/include/security/_pam_types.h (__LINUX_PAM_MINOR__): Update. * NEWS: Update. Resolves: https://github.com/linux-pam/linux-pam/issues/844
-rw-r--r--NEWS11
-rw-r--r--libpam/include/security/_pam_types.h2
-rw-r--r--meson.build2
-rw-r--r--po/Linux-PAM.pot2
-rw-r--r--po/meson.build2
5 files changed, 15 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 888de8ae..73bdc059 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,16 @@
Linux-PAM NEWS -- history of user-visible changes.
+Release 1.7.0
+* build: changed build system from autotools to meson.
+* libpam_misc: use ECHOCTL in the terminal input
+* pam_access: support UID and GID in access.conf
+* pam_env: install environment file in vendordir if vendordir is enabled
+* pam_issue: only count class user if logind support is enabled
+* pam_limits: use systemd-logind instead of utmp if logind support is enabled
+* pam_unix: compare password hashes in constant time
+* Multiple minor bug fixes, build fixes, portability fixes,
+ documentation improvements, and translation updates.
+
Release 1.6.1
* build: fail if specified configure options cannot be satisfied.
* pam_env: fixed --disable-econf --enable-vendordir support.
diff --git a/libpam/include/security/_pam_types.h b/libpam/include/security/_pam_types.h
index 4d6909e8..f2d3e204 100644
--- a/libpam/include/security/_pam_types.h
+++ b/libpam/include/security/_pam_types.h
@@ -22,7 +22,7 @@ typedef struct pam_handle pam_handle_t;
/* Major and minor version number of the Linux-PAM package. Use
these macros to test for features in specific releases. */
#define __LINUX_PAM__ 1
-#define __LINUX_PAM_MINOR__ 0
+#define __LINUX_PAM_MINOR__ 7
/* ----------------- The Linux-PAM return values ------------------ */
diff --git a/meson.build b/meson.build
index 7fc68b96..2be21282 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('Linux-PAM', 'c',
- version: '1.6.1',
+ version: '1.7.0',
license: 'BSD-3-Clause OR GPL-2.0-or-later',
default_options: [
'b_pie=true',
diff --git a/po/Linux-PAM.pot b/po/Linux-PAM.pot
index eef13f3b..72959df9 100644
--- a/po/Linux-PAM.pot
+++ b/po/Linux-PAM.pot
@@ -6,7 +6,7 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: Linux-PAM 1.6.1\n"
+"Project-Id-Version: Linux-PAM 1.7.0\n"
"Report-Msgid-Bugs-To: https://github.com/linux-pam/linux-pam/issues\n"
"POT-Creation-Date: 2024-10-13 20:00+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
diff --git a/po/meson.build b/po/meson.build
index e4d451ff..bfd0937d 100644
--- a/po/meson.build
+++ b/po/meson.build
@@ -10,6 +10,6 @@ i18n.gettext(
args: [
'--copyright-holder=Linux-PAM Project',
'--msgid-bugs-address=https://github.com/linux-pam/linux-pam/issues',
- '--package-version=1.6.1',
+ '--package-version=1.7.0',
],
)