From a13441e039fd241553b5070acf58e16ed34c6272 Mon Sep 17 00:00:00 2001 From: HenryAtUber Date: Thu, 29 Oct 2020 17:22:55 -0700 Subject: [PATCH] prepare for v1.1.12 --- ChangeLog.txt | 3 +++ README.md | 2 +- athenareader/go.mod | 2 +- go/constants.go | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 6c3ad7d..358f5fe 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,6 @@ +v1.1.12 - Minor bug fix and more documentation (October 29, 2020) + - Use exact match for Query ID search + v1.1.11 - Minor bug fix and more documentation (June 16, 2020) - Uber Engdoc documentation - Support $path in Athena query diff --git a/README.md b/README.md index 08494ff..6493636 100644 --- a/README.md +++ b/README.md @@ -1113,7 +1113,7 @@ For the contributors, the following is `athenadriver` Package's UML Class Diagra [cov-img]: https://codecov.io/gh/uber/athenadriver/branch/master/graph/badge.svg [cov]: https://codecov.io/gh/uber/athenadriver -[release-img]: https://img.shields.io/badge/release-v1.1.11-red +[release-img]: https://img.shields.io/badge/release-v1.1.12-red [release]: https://github.com/uber/athenadriver/releases [ci-img]: https://api.travis-ci.com/uber/athenadriver.svg?token=e2usf1UJEGmsFDHzV61y&branch=master diff --git a/athenareader/go.mod b/athenareader/go.mod index 834660e..afa8614 100644 --- a/athenareader/go.mod +++ b/athenareader/go.mod @@ -3,6 +3,6 @@ module github.com/uber/athenadriver/athenareader go 1.13 require ( - github.com/uber/athenadriver v1.1.11 + github.com/uber/athenadriver v1.1.12 go.uber.org/fx v1.12.0 ) diff --git a/go/constants.go b/go/constants.go index e6adecf..f3df544 100644 --- a/go/constants.go +++ b/go/constants.go @@ -108,4 +108,4 @@ const PCStopQID = "stop_query_id" const PCGetDriverVersion = "get_driver_version" // DriverVersion is athenadriver's version -const DriverVersion = "1.1.11" +const DriverVersion = "1.1.12"