Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.8.4 #218

Merged
merged 5 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
* 0.8.4
[Bugfix] loginctl usage was not sh compatible
[Bugfix] Misc. fixes related to memory handling
[Enhancement] Don't check every element of ut_addr_v6
[Enhancement] Service whitelist is now user configurable
[Enhancement] Whitelist additions: lxdm, xscreensaver, klockscreen
[Enhancement] Support build on arm and m68k

* 0.8.3
[Enhancement] Install pam-auth-update config only on systems having it
[Feature] pamusb-conf now has a --reset-pads=username option
Expand Down
4 changes: 2 additions & 2 deletions arch_linux/PKGBUILD_git
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Contributor: Pekka Helenius <fincer89 [at] hotmail [dot] com>

pkgname=pam_usb-git
pkgver=0.8.2_r500.g7a785de
pkgrel=3
pkgver=0.8.4_r547.g2c1e20f
pkgrel=1
pkgdesc='Hardware authentication for Linux using ordinary flash media (USB & Card based).'
arch=($CARCH)
url='https://github.com/mcdope/pam_usb'
Expand Down
4 changes: 2 additions & 2 deletions arch_linux/PKGBUILD_stable
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Contributor: Pekka Helenius <fincer89 [at] hotmail [dot] com>

pkgname=pam_usb
pkgver=0.8.3
pkgrel=4
pkgver=0.8.4
pkgrel=1
pkgdesc='Hardware authentication for Linux using ordinary flash media (USB & Card based).'
arch=($CARCH)
url='https://github.com/mcdope/pam_usb'
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
libpam-usb (0.8.4) unstable; urgency=medium
* [Bugfix] loginctl usage was not sh compatible
* [Bugfix] Misc. fixes related to memory handling
* [Enhancement] Don't check every element of ut_addr_v6
* [Enhancement] Service whitelist is now user configurable
* [Enhancement] Whitelist additions: lxdm, xscreensaver, klockscreen

-- Tobias Bäumer <[email protected]> Thu, 04 Jan 2024 21:00:00 +0100

libpam-usb (0.8.3-1) unstable; urgency=medium
* [Bugfix] Fix pam-auth-update config not being included in package

Expand Down
9 changes: 8 additions & 1 deletion fedora/SPECS/pam_usb.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%define _topdir /usr/local/src/pam_usb/fedora
%define name pam_usb
%define release 1
%define version 0.8.3
%define version 0.8.4
%define buildroot %{_topdir}/%{name}‑%{version}‑root

BuildRoot: %{buildroot}
Expand Down Expand Up @@ -56,6 +56,13 @@ rm -rf %{buildroot}/usr/share/pam-configs
%doc %attr(0644,root,root) /usr/share/doc/pam_usb/TROUBLESHOOTING

%changelog
* Thu Jan 04 2024 Tobias Bäumer <[email protected]> - 0.8.4
- [Bugfix] loginctl usage was not sh compatible
- [Bugfix] Misc. fixes related to memory handling
- [Enhancement] Don't check every element of ut_addr_v6
- [Enhancement] Service whitelist is now user configurable
- [Enhancement] Whitelist additions: lxdm, xscreensaver, klockscreen

* Tue Aug 30 2022 Tobias Bäumer <[email protected]> - 0.8.3-1
- [Enhancement] Install pam-auth-update config only on systems having it
- [Feature] pamusb-conf now has a --reset-pads=username option
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#ifndef PUSB_VERSION_H_
# define PUSB_VERSION_H_

# define PUSB_VERSION "0.8.3"
# define PUSB_VERSION "0.8.4"

#endif /* !PUSB_VERSION_H_ */
2 changes: 1 addition & 1 deletion tools/pamusb-conf
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def resetPads():
sys.exit(0)

def usage():
print('Version 0.8.3')
print('Version 0.8.4')
print('Usage: %s [--help] [--verbose] [--yes] [--config=path] [--reset-pads=username] [--add-user=name | --add-device=name [[--device=number] [--volume=number]]' % os.path.basename(__file__))
sys.exit(1)

Expand Down
Loading