diff --git a/CHANGES.md b/CHANGES.md index da59870..f946d33 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +# pizauth 1.0.5 (2024-07-27) + +* Use `XDG_RUNTIME_DIR` instead of `XDG_DATA_HOME` for the socket path. + + # pizauth 1.0.4 (2024-02-04) * Add `pizauth revoke` which revokes any tokens / ongoing authentication for a diff --git a/Cargo.lock b/Cargo.lock index 91e590f..86fe9d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -643,7 +643,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pizauth" -version = "1.0.4" +version = "1.0.5" dependencies = [ "base64", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 09075f9..0e28f95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pizauth" description = "Command-line OAuth2 authentication daemon" -version = "1.0.4" +version = "1.0.5" repository = "https://github.com/ltratt/pizauth/" authors = ["Laurence Tratt "] readme = "README.md"