Skip to content
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## v0.3.2 — 2026-05-28

### Fixed

- **PAM control keyword corrected: `success=end` → `success=done` across all 9 sites.**
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
]

[workspace.package]
version = "0.3.0"
version = "0.3.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/sovren-software/visage"
Expand Down
4 changes: 2 additions & 2 deletions packaging/aur/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://github.com/sovren-software/visage

pkgname=visage
pkgver=0.3.0
pkgver=0.3.2
pkgrel=1
pkgdesc="Linux face authentication via PAM — persistent daemon, IR camera support, ONNX inference"
arch=('x86_64')
Expand All @@ -16,7 +16,7 @@ install="$pkgname.install"
# Preserve user data and face database across upgrades
backup=('var/lib/visage/faces.db')
source=("$pkgname-$pkgver.tar.gz::https://github.com/sovren-software/visage/archive/refs/tags/v$pkgver.tar.gz")
# TODO: compute real sha256sum at release time: sha256sum visage-0.3.0.tar.gz
# TODO: compute real sha256sum at release time: sha256sum visage-0.3.2.tar.gz
sha256sums=('SKIP')

build() {
Expand Down
2 changes: 1 addition & 1 deletion packaging/nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

rustPlatform.buildRustPackage {
pname = "visage";
version = "0.3.0";
version = "0.3.2";

src = lib.cleanSource ../..;

Expand Down