Skip to content
This repository was archived by the owner on Dec 8, 2021. It is now read-only.

Commit 53abc48

Browse files
authored
chore: update release notes (#1324)
1 parent 9f2a5f9 commit 53abc48

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed

CHANGELOG.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Changelog
22

3-
## v0.9.x - TBD
3+
## v0.10.x - TBD
4+
5+
## v0.9.x - 2020-03
6+
7+
* **Breaking Changes**
8+
* There are no API breaking changes in this release.
9+
10+
* **Other Changes**
11+
* cleanup: change to common's {Connection,Tracing}Options (#1279) - this is
12+
**not** an API breaking change, but does change the ABI.
13+
* cleanup: use common's PaginationRange (#1278) - this is **not** an API
14+
breaking change, but does change the ABI.
15+
* feat: implement quickstart example (#1318) - shows how to use
16+
`google-cloud-cpp-spanner` from a larger project, both with CMake and Bazel.
17+
* feat: do not rethrow `RuntimeStatusError` from a `Commit()` mutator (#1320) -
18+
allows applications to use `StatusOr<T>::value()` inside a `Commit()` mutator.
19+
* feat: add a `Commit()` helper that takes the `Mutations` directly (#1319) -
20+
a simpler API to commit a vector of `spanner::Mutation`.
21+
* feat: support environment-variable override of default endpoint (#1283)
22+
* feat: make emulator endpoint/credentials changes as late as possible (#1277)
423

524
## v0.8.x - 2020-02
625

INSTALL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ switched_rules_by_language(
108108
grpc = True,
109109
)
110110

111-
# Load some deps of your deps due to
112-
# https://github.com/bazelbuild/bazel/issues/1943
111+
# Load indirect dependencies due to
112+
# https://github.com/bazelbuild/bazel/issues/1943
113113
load("@com_github_googleapis_google_cloud_cpp_common//bazel:google_cloud_cpp_common_deps.bzl", "google_cloud_cpp_common_deps")
114114
google_cloud_cpp_common_deps()
115115
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")

ci/test-readme/generate-install.sh

+10-4
Original file line numberDiff line numberDiff line change
@@ -107,23 +107,29 @@ the following commands to your `WORKSPACE` file:
107107
# Add the necessary Starlark functions to fetch google-cloud-cpp-spanner.
108108
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
109109
110-
# Update the version and SHA256 digest as needed.
110+
# Fetch the Cloud Spanner C++ library.
111+
# NOTE: Update this version and SHA256 as needed.
111112
http_archive(
112113
name = "com_github_googleapis_google_cloud_cpp_spanner",
113114
sha256 = "a833d3c1a6d127132e961350829babac521b62b4c837b88d7c219b400e98fed1",
114115
strip_prefix = "google-cloud-cpp-spanner-0.8.0",
115116
url = "https://github.com/googleapis/google-cloud-cpp-spanner/archive/v0.8.0.tar.gz",
116117
)
117118
118-
# Configure @com_google_googleapis to only compile C++ and gRPC:
119+
# Call a function to load the Cloud Spanner C++ library's deps
120+
load("@com_github_googleapis_google_cloud_cpp_spanner//bazel:google_cloud_cpp_spanner_deps.bzl", "google_cloud_cpp_spanner_deps")
121+
google_cloud_cpp_spanner_deps()
122+
123+
# (optional) Only generate C++ from the protos.
119124
load("@com_google_googleapis//:repository_rules.bzl", "switched_rules_by_language")
120125
switched_rules_by_language(
121126
name = "com_google_googleapis_imports",
122-
cc = True, # C++ support is only "Partially implemented", roll our own.
127+
cc = True,
123128
grpc = True,
124129
)
125130
126-
# Call the corresponding workspace function for each dependency
131+
# Load indirect dependencies due to
132+
# https://github.com/bazelbuild/bazel/issues/1943
127133
load("@com_github_googleapis_google_cloud_cpp_common//bazel:google_cloud_cpp_common_deps.bzl", "google_cloud_cpp_common_deps")
128134
google_cloud_cpp_common_deps()
129135
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")

0 commit comments

Comments
 (0)