Skip to content

Commit 0a05a27

Browse files
authored
Merge pull request #37 from uber/tidy_up
Release v1.1.13
2 parents 4aa80d3 + 137ed81 commit 0a05a27

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ matrix:
1010
include:
1111
- go: 1.12.x
1212
- go: 1.13.x
13+
- go: 1.14.x
14+
- go: 1.15.x
15+
- go: 1.16.x
1316
env: LINT=1
1417

1518
install:

ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v1.1.13 - Merge community contribution (July 16, 2021)
2+
- Overriding Athena Service Limits for Query Timeout
3+
- README cleanup
4+
15
v1.1.12 - Minor bug fix and more documentation (October 29, 2020)
26
- Use exact match for Query ID search
37

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
[![CodeCov][cov-img]][cov]
55
[![GoDoc][doc-img]][doc]
66
[![Github release][release-img]][release]
7-
[![Build Status][ci-img]][ci]
8-
[![FOSSA][fossa-img]][fossa]
97
[![Go Report Card][report-card-img]][report-card]
108
[![lic][license-img]][license]
119
[![made][made-img]][made]
@@ -1154,7 +1152,7 @@ For the contributors, the following is `athenadriver` Package's UML Class Diagra
11541152

11551153
----
11561154

1157-
`athenadriver` is brought to you by Uber ATG Infrastructure. Copyright (c) 2020 Uber Technologies, Inc. ![](resources/atg-infra.png)
1155+
`athenadriver` is brought to you by Uber. Copyright (c) 2020 Uber Technologies, Inc.
11581156

11591157

11601158

@@ -1165,7 +1163,7 @@ For the contributors, the following is `athenadriver` Package's UML Class Diagra
11651163
[cov-img]: https://codecov.io/gh/uber/athenadriver/branch/master/graph/badge.svg
11661164
[cov]: https://codecov.io/gh/uber/athenadriver
11671165

1168-
[release-img]: https://img.shields.io/badge/release-v1.1.12-red
1166+
[release-img]: https://img.shields.io/badge/release-v1.1.13-red
11691167
[release]: https://github.com/uber/athenadriver/releases
11701168

11711169
[report-card-img]: https://goreportcard.com/badge/github.com/uber/athenadriver
@@ -1179,6 +1177,6 @@ For the contributors, the following is `athenadriver` Package's UML Class Diagra
11791177

11801178
[release-policy]: https://golang.org/doc/devel/release.html#policy
11811179

1182-
[made-img]: https://img.shields.io/badge/By-Uber%20ATG-red
1183-
[made]: https://www.uber.com/us/en/atg/
1180+
[made-img]: https://img.shields.io/badge/By-Uber%20Tech-red
1181+
[made]: https://www.uber.com
11841182

athenareader/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module github.com/uber/athenadriver/athenareader
33
go 1.13
44

55
require (
6-
github.com/uber/athenadriver v1.1.12
6+
github.com/uber/athenadriver v1.1.13
77
go.uber.org/fx v1.12.0
88
)

go/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ const PCStopQID = "stop_query_id"
108108
const PCGetDriverVersion = "get_driver_version"
109109

110110
// DriverVersion is athenadriver's version
111-
const DriverVersion = "1.1.12"
111+
const DriverVersion = "1.1.13"

go/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ var (
4242
ErrAthenaNilAPI = errors.New("athenaAPI must not be nil")
4343
ErrTestMockGeneric = errors.New("some_mock_error_for_test")
4444
ErrTestMockFailedByAthena = errors.New("the reason why Athena failed the query")
45-
ErrServiceLimitOverride = errors.New(fmt.Sprintf("service limit override must be greater than %d", PoolInterval))
45+
ErrServiceLimitOverride = fmt.Errorf("service limit override must be greater than %d", PoolInterval)
4646
)

0 commit comments

Comments
 (0)