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

Commit

Permalink
chore: update release notes (#1324)
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Mar 2, 2020
1 parent 9f2a5f9 commit 53abc48
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 7 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# Changelog

## v0.9.x - TBD
## v0.10.x - TBD

## v0.9.x - 2020-03

* **Breaking Changes**
* There are no API breaking changes in this release.

* **Other Changes**
* cleanup: change to common's {Connection,Tracing}Options (#1279) - this is
**not** an API breaking change, but does change the ABI.
* cleanup: use common's PaginationRange (#1278) - this is **not** an API
breaking change, but does change the ABI.
* feat: implement quickstart example (#1318) - shows how to use
`google-cloud-cpp-spanner` from a larger project, both with CMake and Bazel.
* feat: do not rethrow `RuntimeStatusError` from a `Commit()` mutator (#1320) -
allows applications to use `StatusOr<T>::value()` inside a `Commit()` mutator.
* feat: add a `Commit()` helper that takes the `Mutations` directly (#1319) -
a simpler API to commit a vector of `spanner::Mutation`.
* feat: support environment-variable override of default endpoint (#1283)
* feat: make emulator endpoint/credentials changes as late as possible (#1277)

## v0.8.x - 2020-02

Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ switched_rules_by_language(
grpc = True,
)

# Load some deps of your deps due to
# https://github.com/bazelbuild/bazel/issues/1943
# Load indirect dependencies due to
# https://github.com/bazelbuild/bazel/issues/1943
load("@com_github_googleapis_google_cloud_cpp_common//bazel:google_cloud_cpp_common_deps.bzl", "google_cloud_cpp_common_deps")
google_cloud_cpp_common_deps()
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
Expand Down
14 changes: 10 additions & 4 deletions ci/test-readme/generate-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,23 +107,29 @@ the following commands to your `WORKSPACE` file:
# Add the necessary Starlark functions to fetch google-cloud-cpp-spanner.
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Update the version and SHA256 digest as needed.
# Fetch the Cloud Spanner C++ library.
# NOTE: Update this version and SHA256 as needed.
http_archive(
name = "com_github_googleapis_google_cloud_cpp_spanner",
sha256 = "a833d3c1a6d127132e961350829babac521b62b4c837b88d7c219b400e98fed1",
strip_prefix = "google-cloud-cpp-spanner-0.8.0",
url = "https://github.com/googleapis/google-cloud-cpp-spanner/archive/v0.8.0.tar.gz",
)
# Configure @com_google_googleapis to only compile C++ and gRPC:
# Call a function to load the Cloud Spanner C++ library's deps
load("@com_github_googleapis_google_cloud_cpp_spanner//bazel:google_cloud_cpp_spanner_deps.bzl", "google_cloud_cpp_spanner_deps")
google_cloud_cpp_spanner_deps()
# (optional) Only generate C++ from the protos.
load("@com_google_googleapis//:repository_rules.bzl", "switched_rules_by_language")
switched_rules_by_language(
name = "com_google_googleapis_imports",
cc = True, # C++ support is only "Partially implemented", roll our own.
cc = True,
grpc = True,
)
# Call the corresponding workspace function for each dependency
# Load indirect dependencies due to
# https://github.com/bazelbuild/bazel/issues/1943
load("@com_github_googleapis_google_cloud_cpp_common//bazel:google_cloud_cpp_common_deps.bzl", "google_cloud_cpp_common_deps")
google_cloud_cpp_common_deps()
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
Expand Down

0 comments on commit 53abc48

Please sign in to comment.