mirror of https://github.com/uber-go/multierr.git
Prepare release v1.8.0 (#56)
Release v1.8.0 with an optimized `Combine`. Test with Go 1.17 for it.
This commit is contained in:
parent
cea7d2e1fc
commit
10aaa3c357
|
|
@ -13,9 +13,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
go: ["1.15.x", "1.16.x"]
|
||||
go: ["1.16.x", "1.17.x"]
|
||||
include:
|
||||
- go: 1.16.x
|
||||
- go: 1.17.x
|
||||
latest: true
|
||||
|
||||
steps:
|
||||
|
|
@ -26,7 +26,7 @@ jobs:
|
|||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
|
||||
- name: Load cached dependencies
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,12 @@
|
|||
Releases
|
||||
========
|
||||
|
||||
v1.8.0 (2022-02-28)
|
||||
===================
|
||||
|
||||
- `Combine`: perform zero allocations when there are no errors.
|
||||
|
||||
|
||||
v1.7.0 (2021-05-06)
|
||||
===================
|
||||
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
|
||||
//go:build tools
|
||||
// +build tools
|
||||
|
||||
package multierr
|
||||
|
|
|
|||
Loading…
Reference in New Issue