Updated README.md, package description and version number for v1.0.2 release

This commit is contained in:
Winni Neessen 2022-05-08 12:07:33 +02:00
parent 77e5a4345d
commit fc0ea3bd48
Signed by: wneessen
GPG key ID: 385AC9889632126E
2 changed files with 4 additions and 4 deletions

View file

@ -11,6 +11,5 @@ This Go package provides an simple to use interface to the excellent
## Usage ## Usage
Have a look at the [GoDocs Reference](https://pkg.go.dev/github.com/wneessen/go-hibp) for details on how to implement 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 or check out the examples for the different APIs in the [examples](examples) access to the HIBP API with this package. You will also find GoDoc code examples there.
directory.

View file

@ -1,3 +1,4 @@
// Package hibp provides Go binding to all 3 APIs of the "Have I been Pwned" by Troy Hunt
package hibp package hibp
import ( import (
@ -12,7 +13,7 @@ import (
) )
// Version represents the version of this package // 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 // BaseUrl is the base URL for the majority of API calls
const BaseUrl = "https://haveibeenpwned.com/api/v3" const BaseUrl = "https://haveibeenpwned.com/api/v3"