From 21dc46ca2280c19e93fbd2fc84908f9c954ebb76 Mon Sep 17 00:00:00 2001 From: Hedzr Yeh Date: Wed, 1 Mar 2023 23:12:54 +0800 Subject: [PATCH] bump to v3.1.3 - v3.1.3 - better output of sites and taggedSites --- CHANGELOG | 3 +++ README.md | 5 ++++- doc.go | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 952cf7c..310bd22 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ # CHANGELOG +- v3.1.3 + - better output of sites and taggedSites + - v3.1.1 - better message format for a nested error, see [Better format](#better-format-for-a-nested-error) diff --git a/README.md b/README.md index 1bcc8eb..295afb3 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Coverage Status](https://coveralls.io/repos/github/hedzr/errors/badge.svg)](https://coveralls.io/github/hedzr/errors) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fhedzr%2Ferrors.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fhedzr%2Ferrors?ref=badge_shield) -Wrapped errors and more for golang developing (not just for go1.13+, go1.20+). +Wrapped errors and more for golang developing (not just for go1.11, go1.13, and go1.20+). `hedzr/errors` provides the compatibilities to your old project up to go 1.20. @@ -31,6 +31,9 @@ Wrapped errors and more for golang developing (not just for go1.13+, go1.20+). ## History +- v3.1.3 + - better output of sites and taggedSites + - v3.1.1 - better message format for a nested error, see [Better format](#better-format-for-a-nested-error) diff --git a/doc.go b/doc.go index d034d02..2c2ee33 100644 --- a/doc.go +++ b/doc.go @@ -10,7 +10,7 @@ const ( // AppName const AppName = "errors" // Version const - Version = "3.1.1" + Version = "3.1.3" // VersionInt const - VersionInt = 0x030101 + VersionInt = 0x030103 )