Skip to content

Commit 1f79dee

Browse files
committed
Update README on master for release of v1 API.
1 parent 344948d commit 1f79dee

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,24 @@
44

55
# stack
66

7-
Package stack implements utilities to capture, manipulate, and format call stacks. It provides a simpler API than package runtime.
7+
Package stack implements utilities to capture, manipulate, and format call
8+
stacks. It provides a simpler API than package runtime.
89

9-
The implementation takes care of the minutia and special cases of interpreting the program counter (pc) values returned by runtime.Callers.
10+
The implementation takes care of the minutia and special cases of interpreting
11+
the program counter (pc) values returned by runtime.Callers.
1012

1113
## Versioning
12-
Package stack publishes stable APIs via gopkg.in. The most recent is v0 (the API is still baking, please file an issue if you have any suggestions), which is imported like so:
1314

14-
import "gopkg.in/stack.v0"
15+
Package stack publishes stable APIs via gopkg.in. The most recent is v1, which
16+
is imported like so:
17+
18+
import "gopkg.in/stack.v1"
1519

1620
## Formatting
17-
Package stack's types implement fmt.Formatter, which provides a simple and flexible way to declaratively configure formatting when used with logging or error tracking packages.
21+
22+
Package stack's types implement fmt.Formatter, which provides a simple and
23+
flexible way to declaratively configure formatting when used with logging or
24+
error tracking packages.
1825

1926
```go
2027
func DoTheThing() {

0 commit comments

Comments
 (0)