bigquery: release v1.1.0

This CL will be tagged bigquery/v1.1.0.

Change-Id: Iea16adf679d069738690c952ea5092c8c986c3d9
Reviewed-on: https://code-review.googlesource.com/c/gocloud/+/46591
Reviewed-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jean de Klerk <deklerk@google.com>
diff --git a/bigquery/CHANGES.md b/bigquery/CHANGES.md
index 495b32f..83dcb83 100644
--- a/bigquery/CHANGES.md
+++ b/bigquery/CHANGES.md
@@ -1,5 +1,16 @@
 # Changes
 
+## v1.1.0
+
+* Added support for specifying default `EncryptionConfig` settings on the
+  dataset.
+
+* Added support for `EncyptionConfig` as part of an ML model.
+
+* Added `Relax()` to make all fields within a `Schema` nullable.
+
+* Added a `UseAvroLogicalTypes` option when defining an avro extract job.
+
 ## v1.0.1
 
 This patch release is a small fix to the go.mod to point to the post-carve out
@@ -8,4 +19,4 @@
 ## v1.0.0
 
 This is the first tag to carve out bigquery as its own module. See:
-https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository.
\ No newline at end of file
+https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository.
diff --git a/bigquery/go.mod b/bigquery/go.mod
index 7847bc9..93e54d31 100644
--- a/bigquery/go.mod
+++ b/bigquery/go.mod
@@ -10,7 +10,7 @@
 	github.com/googleapis/gax-go/v2 v2.0.5
 	golang.org/x/exp v0.0.0-20190912063710-ac5d2bfcbfe0 // indirect
 	golang.org/x/tools v0.0.0-20190917162342-3b4f30a44f3b // indirect
-	google.golang.org/api v0.10.0
+	google.golang.org/api v0.11.0
 	google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51
 	google.golang.org/grpc v1.21.1
 )
diff --git a/bigquery/go.sum b/bigquery/go.sum
index d332fd1..3a2db2e 100644
--- a/bigquery/go.sum
+++ b/bigquery/go.sum
@@ -137,8 +137,8 @@
 google.golang.org/api v0.8.0 h1:VGGbLNyPF7dvYHhcUGYBBGCRDDK0RRJAI6KCvo0CL+E=
 google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
 google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
-google.golang.org/api v0.10.0 h1:7tmAxx3oKE98VMZ+SBZzvYYWRQ9HODBxmC8mXUsraSQ=
-google.golang.org/api v0.10.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
+google.golang.org/api v0.11.0 h1:n/qM3q0/rV2F0pox7o0CvNhlPvZAo7pLbef122cbLJ0=
+google.golang.org/api v0.11.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI=
 google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
 google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
 google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
diff --git a/internal/version/version.go b/internal/version/version.go
index d291921..61d6779 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -26,7 +26,7 @@
 
 // Repo is the current version of the client libraries in this
 // repo. It should be a date in YYYYMMDD format.
-const Repo = "20190802"
+const Repo = "20191008"
 
 // Go returns the Go runtime version. The returned string
 // has no whitespace.