This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
errors 0.7.1
What's new since version 0.7.0
0.7.1 is a minor release in the 0.7 series which contains bugfixes, documentation improvements and cleanups and some internal refactoring.
Improvements
- Rename
StackTrace
interface tostacktracer
in docs and examples. - Capitalise first letter of trace in examples. Thanks @jongillham
- Wrapped errors now print full stacktrace.
- Documentation improvements, #69. Thanks @AlekSi
- Added benchmarks comparing stack trace performance. Fixes #72. Thanks @kardianos
Bug fixes
- Fix %q format for wrapped errors. Thanks @greensnark
- Remove trailing newline from LICENSE file. Thanks @vbatts
- Tests now pass when
pkg/errors
is vendored. Fixes #77. Thanks @exp - Fix the %q format for errors so it puts "" around the output (caused by a bug introduced between 0.7.0 and 0.7.1). Thanks @ncw