-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from jelmersnoeck/jelmer/release-notes
Changelog: add release notes.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
# Changelog | ||
|
||
## v1.1.0 - 2016-08-22 | ||
|
||
- Removed testify dependency | ||
- Removed internal interface dependencies, rely on structs from now on | ||
- Removed `x/net/context` dependency | ||
|
||
### Context | ||
|
||
The context interface has been copied into the package for backward | ||
compatibility reasons. In Go 1.7 this has been moved to the standard library, | ||
but this would mean this package isn't available for other Go versions. In the | ||
tests we also use the `x/net/context` package to test some context behaviour. | ||
|
||
Previously, one could inject a `nil` context and it would be converted to a | ||
proper `context.Background()`. This is not the case anymore. The user should | ||
always inject a context. If the purpose of the context is still unknown, use | ||
`context.TODO()`. | ||
|
||
## v1.0.0 - 2016-08-08 | ||
First official release. |