diff --git a/CHANGES.md b/CHANGES.md index 4f1c8af..a79cced 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,15 @@ +# pizauth 1.0.4 (2023-02-04) + +* Add `pizauth revoke` which revokes any tokens / ongoing authentication for a + given account. Note that this does *not* revoke the remote token, as OAuth2 + does not currently have standard support for this. + +* Include bash completion scripts and example systemd units. + +* Rework file installation to better handle a variety of OSes and file layouts. + The Makefile is now only compatible with gmake. + + # pizauth 1.0.3 (2023-11-28) * Add `pizauth status` to see which accounts have valid tokens (or not): diff --git a/Cargo.lock b/Cargo.lock index c06d0cc..d89acbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -642,7 +642,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pizauth" -version = "1.0.3" +version = "1.0.4" dependencies = [ "base64", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 9c1b6a7..7c7eb8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pizauth" description = "Command-line OAuth2 authentication daemon" -version = "1.0.3" +version = "1.0.4" repository = "https://github.com/ltratt/pizauth/" authors = ["Laurence Tratt "] readme = "README.md" diff --git a/Makefile b/Makefile index 660d488..5baed20 100644 --- a/Makefile +++ b/Makefile @@ -47,6 +47,6 @@ distrib: && mkdir pizauth-$$v \ && cp -rp Cargo.lock Cargo.toml COPYRIGHT LICENSE-APACHE LICENSE-MIT \ Makefile CHANGES.md README.md build.rs pizauth.1 pizauth.conf.5 \ - pizauth.conf.example src pizauth-$$v \ + examples lib share src pizauth-$$v \ && tar cfz pizauth-$$v.tgz pizauth-$$v \ && rm -rf pizauth-$$v