pkg / errors

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

Support go1.12 toolchain #199

Open rickb777 opened 5 years ago

rickb777 commented 5 years ago

https://golang.org/doc/go1.12#compiler requires changes to the way the stack is analysed.

See https://github.com/pkg/errors/blob/ba968bfe8b2f7e042a574c888954fccecfa385b4/stack.go#L136 in v0.8.1 for example.

davecheney commented 5 years ago

I believe this is no longer required, Keith rolled back the change to runtime.Callers

davecheney commented 5 years ago

See #200. I believe that Go 1.12 is supported by this package.