Skip to content

Commit 7b1b784

Browse files
chrisradekluluzhao
authored andcommitted
chore: prepare v1.0.0-rc.11 release (#92)
1 parent 6818260 commit 7b1b784

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Release v1.0.0-rc.11 (2019-03-15)
2+
================================
3+
### SDK Breaking Changes
4+
* Dropped support for go versions 1.7 and 1.8. Users will need to use go version 1.9 or higher. [PR #91](https://github.com/aws/aws-xray-sdk-go/pull/91)
5+
6+
### SDK Enhancements
7+
* Adds support for go [dep](https://github.com/golang/dep) and go modules. [PR #90](https://github.com/aws/aws-xray-sdk-go/pull/90)
8+
* Fixes a bug where optional interfaces on `http.ResponseWriter` (e.g. `http.Flusher`, `http.CloseNotifier`, etc.)
9+
were not visible due to how the xray Handler wrapped the `http.ResponseWriter`. [PR #91](https://github.com/aws/aws-xray-sdk-go/pull/91)
10+
111
Release v1.0.0-rc.10 (2019-02-19)
212
================================
313
### SDK Breaking Changes

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
The following people have contributed to the AWS X-Ray SDK for Go's design and/or implementation (alphabetical):
33
* Anssi Alaranta
44
* Bilal Khan
5+
* Christopher Radek
56
* James Bowman
67
* Lulu Zhao
78
* Muir Manders

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ require (
1010
github.com/stretchr/testify v1.1.4
1111
golang.org/x/net v0.0.0-20190301231341-16b79f2e4e95
1212
golang.org/x/text v0.0.0-20190306152657-5d731a35f486
13-
)
13+
)

xray/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
// SDKVersion records the current X-Ray Go SDK version.
27-
const SDKVersion = "1.0.0-rc.10"
27+
const SDKVersion = "1.0.0-rc.11"
2828

2929
// SDKType records which X-Ray SDK customer uses.
3030
const SDKType = "X-Ray for Go"

0 commit comments

Comments
 (0)