From fc0ea3bd48baca787bece40fac4e2e7b19abf1b8 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sun, 8 May 2022 12:07:33 +0200 Subject: [PATCH] Updated README.md, package description and version number for v1.0.2 release --- README.md | 5 ++--- hibp.go | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 07eeb6c..d6faba9 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,5 @@ This Go package provides an simple to use interface to the excellent ## Usage -Have a look at the [GoDocs Reference](https://pkg.go.dev/github.com/wneessen/go-hibp) for details on how to implement -access to the HIBP API with this package or check out the examples for the different APIs in the [examples](examples) -directory. +Check out the [GoDocs Reference](https://pkg.go.dev/github.com/wneessen/go-hibp) for details on how to implement +access to the HIBP API with this package. You will also find GoDoc code examples there. diff --git a/hibp.go b/hibp.go index 22ace5e..882609d 100644 --- a/hibp.go +++ b/hibp.go @@ -1,3 +1,4 @@ +// Package hibp provides Go binding to all 3 APIs of the "Have I been Pwned" by Troy Hunt package hibp import ( @@ -12,7 +13,7 @@ import ( ) // Version represents the version of this package -const Version = "1.0.1" +const Version = "1.0.2" // BaseUrl is the base URL for the majority of API calls const BaseUrl = "https://haveibeenpwned.com/api/v3"