README.md: Update news with new version release notes.

Immediately after submission, I will apply the tag v0.14.0.

Change-Id: Ib8c2fc7a0f652fb5737e7db63f468a53f9147d33
Reviewed-on: https://code-review.googlesource.com/17270
Reviewed-by: Chris Broadfoot <cbro@google.com>
diff --git a/README.md b/README.md
index 91b1be2..4927e83 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,32 @@
 
 ## News
 
+_September 28, 2017_
+
+*v0.14.0*
+
+- bigquery BREAKING CHANGES:
+  - Standard SQL is the default for queries and views.
+  - `Table.Create` takes `TableMetadata` as a second argument, instead of
+    options.
+  - `Dataset.Create` takes `DatasetMetadata` as a second argument.
+  - `DatasetMetadata` field `ID` renamed to `FullID`
+  - `TableMetadata` field `ID` renamed to `FullID`
+
+- Other bigquery changes:
+  - The client will append a random suffix to a provided job ID if you set
+    `AddJobIDSuffix` to true in a job config.
+  - Listing jobs is supported.
+  - Better retry logic.
+
+- vision, language, speech: clients are now stable
+
+- monitoring: client is now beta
+
+- profiler:
+  - Rename InstanceName to Instance, ZoneName to Zone
+  - Auto-detect service name and version on AppEngine.
+
 _September 8, 2017_
 
 *v0.13.0*
diff --git a/internal/version/version.go b/internal/version/version.go
index 321f3c8..513afa4 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 = "20170915"
+const Repo = "20170928"
 
 // Go returns the Go runtime version. The returned string
 // has no whitespace.