From c7f29765fe65770c3800210c91eaef644802bc8a Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 28 Jun 2020 16:17:43 +0100 Subject: [PATCH] age: unstable-2020-03-25 -> v1.0.0-beta4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumping to upstream release from 2020-06-28. This skips 1.0.0-beta3, which was released on the same day and contained a bug. Upstream changelog: 189041b6 (tag: v1.0.0-beta4) age: move package from filippo.io/age/age to filippo.io/age 🤦♂ e6093596 (tag: v1.0.0-beta3) age,agessh,armor: unleash public API 💥🦑 33355dcc internal/age: unexport NewX25519Recipient and NewX25519Identity 9a08b7e6 internal/age,internal/armor: add examples 9b83d948 internal/age: surface format.Recipient as type Stanza c9a35c07 internal/agessh: move EncryptedSSHIdentity out of cmd/age 7d608d12 .github/workflows: add rage interop tests trigger (#125) 6782356e internal/age: add some docs and polish API 08546656 internal/format: fix a nasty bufio.Reader nesting bug 292c3aae internal/agessh: new package b32ea4c1 cmd/age: add a TODO about not dumping decrypted binary to the terminal c7c7f187 internal/armor: new package a7c4274d internal/age: remove EncryptWithArmor and armor support in Decrypt 7088a732 internal/age: unexport SSHFingerprint --- pkgs/tools/security/age/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/age/default.nix b/pkgs/tools/security/age/default.nix index c3756b545e3..429a8689a1f 100644 --- a/pkgs/tools/security/age/default.nix +++ b/pkgs/tools/security/age/default.nix @@ -2,7 +2,7 @@ buildGoModule rec { pname = "age"; - version = "unstable-2020-03-25"; + version = "1.0.0-beta4"; goPackagePath = "github.com/FiloSottile/age"; vendorSha256 = "0km7a2826j3fk2nrkmgc990chrkcfz006wfw14yilsa4p2hmfl7m"; @@ -14,8 +14,8 @@ buildGoModule rec { src = fetchFromGitHub { owner = "FiloSottile"; repo = "age"; - rev = "f0f8092d60bb96737fa096c29ec6d8adb5810390"; - sha256 = "079kfc8d1pr39hr4qnx48kviyzwg4p8m4pz0bdkypns4aq8ppbfk"; + rev = "v${version}"; + sha256 = "0pp6zn4rdypyxn1md9ppisiwiapkfkbh08rzfl3qwn0998wx6gnb"; }; meta = with lib; { @@ -24,4 +24,4 @@ buildGoModule rec { license = licenses.bsd3; maintainers = with maintainers; [ tazjin ]; }; -} \ No newline at end of file +}