Skip to content

Commit 55ae3ef

Browse files
committed
Release version 0.2.0
Signed-off-by: Mike Seplowitz <[email protected]>
1 parent ac53c57 commit 55ae3ef

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

CHANGELOG.markdown

+26-2
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,40 @@ The format is based on [Keep a Changelog][], and this project adheres to
1010

1111
## Unreleased ([&#x0394;][unreleased changes])
1212

13+
## [0.2.0][] ([&#x0394;][0.2.0 changes]) - 2019-09-19
14+
15+
### Added
16+
17+
- `testgroup.T.Run()` wraps `testing.T.Run()`, but passes your test a
18+
`*testgroup.T` instead of a `*testing.T`. This makes it convenient to use
19+
`testgroup.T`'s helpers when writing table-driven tests.
20+
21+
### Changed
22+
23+
- The test group will now fail if:
24+
25+
- the group object has no exported methods
26+
- the group object is passed by value, and it has exported methods with a
27+
pointer receiver
28+
29+
This should help catch mistakes when writing tests.
30+
1331
## [0.1.0][] ([&#x0394;][0.1.0 changes]) - 2019-05-24
1432

1533
First release of the library.
1634

35+
[0.2.0]:
36+
https://github.com/bloomberg/go-testgroup/releases/tag/v0.2.0
37+
"version 0.2.0"
1738
[0.1.0]:
1839
https://github.com/bloomberg/go-testgroup/releases/tag/v0.1.0
1940
"version 0.1.0"
2041
[unreleased changes]:
21-
https://github.com/bloomberg/go-testgroup/compare/v0.1.0...HEAD
22-
"unreleased changes since 0.1.0"
42+
https://github.com/bloomberg/go-testgroup/compare/v0.2.0...HEAD
43+
"unreleased changes since 0.2.0"
44+
[0.2.0 changes]:
45+
https://github.com/bloomberg/go-testgroup/compare/v0.1.0...v0.2.0
46+
"changes from 0.1.0 to 0.2.0"
2347
[0.1.0 changes]:
2448
https://github.com/bloomberg/go-testgroup/commits/v0.1.0
2549
"changes from root to 0.1.0"

0 commit comments

Comments
 (0)