From 77c1f7019ce5e78e2f8ce7d930db7fc982fcf404 Mon Sep 17 00:00:00 2001 From: Matt Schultz Date: Mon, 3 Aug 2026 02:25:40 -0500 Subject: [PATCH] Modernize README badges and install instructions - Replace the stale GoDoc badge (godoc.org was retired in 2020 and now 301-redirects) with the pkg.go.dev "Go Reference" badge. - Update the Tests badge to the current actions/workflows/pr.yml URL and make it a clickable link to the workflow, consistent with the other badges. - Capitalize "Go" in the install instructions. - Drop the -U flag from go get; installing a dependency does not need to update all other dependencies to their latest versions. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b498566..e84bf79 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # go-threefish -![Tests](https://github.com/schultz-is/go-threefish/workflows/Tests/badge.svg) -[![GoDoc](https://godoc.org/github.com/schultz-is/go-threefish?status.svg)](https://pkg.go.dev/github.com/schultz-is/go-threefish) +[![Tests](https://github.com/schultz-is/go-threefish/actions/workflows/pr.yml/badge.svg)](https://github.com/schultz-is/go-threefish/actions/workflows/pr.yml) +[![Go Reference](https://pkg.go.dev/badge/github.com/schultz-is/go-threefish.svg)](https://pkg.go.dev/github.com/schultz-is/go-threefish) [![License](https://img.shields.io/github/license/schultz-is/go-threefish)](./LICENSE) Threefish is a tweakable block cipher that was developed as part of the Skein @@ -22,10 +22,10 @@ which also provides detailed performance information. ## Installation -To install as a dependency in a go project: +To install as a dependency in a Go project: ```console -go get -U github.com/schultz-is/go-threefish +go get github.com/schultz-is/go-threefish ``` ## Usage