pkg / errors

Simple error handling primitives
https://godoc.org/github.com/pkg/errors
BSD 2-Clause "Simplified" License
8.18k stars 691 forks source link

Tag a new release? #209

Closed shawnps-sigsci closed 4 years ago

shawnps-sigsci commented 5 years ago

@davecheney it seems like there are some performance enhancements in master that aren't in a tagged release - any way we could get a v0.8.2 tag? 😄

thaJeztah commented 5 years ago

Looks like it would be v0.9.0; from the v0.8.1 release notes;

pkg/errors 0.8.1 is a bug fix release for errors 0.8.0. It will be the last version to support Go 1.8 and below. pkg/errors 0.9 and above will require Go 1.9 for the new runtime.CallersFrames API.

lwaddicor commented 4 years ago

With the latest changes to support go 1.13 error chains it would be really good to get a release with this in it!

https://github.com/pkg/errors/commit/7f95ac13edff643b8ce5398b6ccab125f8a20c1a

aperezg commented 4 years ago

Yes we're working on it, we want to publish a new release when the library was completely compatible with the new go1.13 errors, we will try that was soon.

lwaddicor commented 4 years ago

That's good to know, thank you!

edkolev commented 4 years ago

Seems like 1.13 errors are completely covered now that https://github.com/pkg/errors/commit/49f8f617296114c890ae0b7ac18c5953d2b1ca0f is in master

aperezg commented 4 years ago

The new release is finally here: https://github.com/pkg/errors/releases/tag/v0.9.0

lwaddicor commented 4 years ago

The new release is finally here: https://github.com/pkg/errors/releases/tag/v0.9.0

Thank you, you wonderful folk!