diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a413d..9760e84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## v0.3.2 — 2026-05-28 + ### Fixed - **PAM control keyword corrected: `success=end` → `success=done` across all 9 sites.** diff --git a/Cargo.lock b/Cargo.lock index 8232009..a7b3405 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1684,7 +1684,7 @@ dependencies = [ [[package]] name = "pam-visage" -version = "0.3.0" +version = "0.3.2" dependencies = [ "libc", "zbus", @@ -2793,7 +2793,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "visage-cli" -version = "0.3.0" +version = "0.3.2" dependencies = [ "anyhow", "clap", @@ -2811,7 +2811,7 @@ dependencies = [ [[package]] name = "visage-core" -version = "0.3.0" +version = "0.3.2" dependencies = [ "image", "ndarray", @@ -2824,7 +2824,7 @@ dependencies = [ [[package]] name = "visage-hw" -version = "0.3.0" +version = "0.3.2" dependencies = [ "libc", "serde", @@ -2837,7 +2837,7 @@ dependencies = [ [[package]] name = "visage-models" -version = "0.3.0" +version = "0.3.2" dependencies = [ "sha2", "thiserror", @@ -2845,7 +2845,7 @@ dependencies = [ [[package]] name = "visaged" -version = "0.3.0" +version = "0.3.2" dependencies = [ "aes-gcm", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index c7886f4..cf16d45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/packaging/aur/PKGBUILD b/packaging/aur/PKGBUILD index eace48b..a460cc7 100644 --- a/packaging/aur/PKGBUILD +++ b/packaging/aur/PKGBUILD @@ -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') @@ -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() { diff --git a/packaging/nix/default.nix b/packaging/nix/default.nix index da133eb..b8b279a 100644 --- a/packaging/nix/default.nix +++ b/packaging/nix/default.nix @@ -19,7 +19,7 @@ rustPlatform.buildRustPackage { pname = "visage"; - version = "0.3.0"; + version = "0.3.2"; src = lib.cleanSource ../..;