[Release] Fix G name for 1.55 (#32919)

There are some places where the G name was not updated properly in the
previous release

<!--

If you know who should review your pull request, please assign it to
that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the
appropriate
lang label.

-->
pull/32918/head^2
Yash Tibrewal 2 years ago committed by GitHub
parent 3bd6c38650
commit 72d988483e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      BUILD
  2. 2
      build_handwritten.yaml
  3. 2
      src/core/lib/surface/version.cc

10
BUILD

@ -179,7 +179,7 @@ config_setting(
python_config_settings()
# This should be updated along with build_handwritten.yaml
g_stands_for = "gracious" # @unused
g_stands_for = "grandslam" # @unused
core_version = "32.0.0" # @unused
@ -1220,15 +1220,15 @@ grpc_cc_library(
grpc_cc_library(
name = "grpc_base",
srcs = [
"//src/core:lib/channel/call_tracer.cc",
"//src/core:lib/channel/channel_stack.cc",
"//src/core:lib/channel/channel_stack_builder_impl.cc",
"//src/core:lib/channel/channel_trace.cc",
"//src/core:lib/channel/channelz.cc",
"//src/core:lib/channel/channelz_registry.cc",
"//src/core:lib/channel/connected_channel.cc",
"//src/core:lib/channel/server_call_tracer_filter.cc",
"//src/core:lib/channel/promise_based_filter.cc",
"//src/core:lib/channel/call_tracer.cc",
"//src/core:lib/channel/server_call_tracer_filter.cc",
"//src/core:lib/channel/status_util.cc",
"//src/core:lib/compression/compression.cc",
"//src/core:lib/compression/compression_internal.cc",
@ -1309,6 +1309,7 @@ grpc_cc_library(
"//src/core:lib/surface/server.cc",
"//src/core:lib/surface/validate_metadata.cc",
"//src/core:lib/surface/version.cc",
"//src/core:lib/transport/batch_builder.cc",
"//src/core:lib/transport/connectivity_state.cc",
"//src/core:lib/transport/error_utils.cc",
"//src/core:lib/transport/metadata_batch.cc",
@ -1317,7 +1318,6 @@ grpc_cc_library(
"//src/core:lib/transport/timeout_encoding.cc",
"//src/core:lib/transport/transport.cc",
"//src/core:lib/transport/transport_op_string.cc",
"//src/core:lib/transport/batch_builder.cc",
] +
# TODO(vigneshbabu): remove these
# These headers used to be vended by this target, but they have to be
@ -1399,6 +1399,7 @@ grpc_cc_library(
"//src/core:lib/surface/lame_client.h",
"//src/core:lib/surface/server.h",
"//src/core:lib/surface/validate_metadata.h",
"//src/core:lib/transport/batch_builder.h",
"//src/core:lib/transport/connectivity_state.h",
"//src/core:lib/transport/custom_metadata.h",
"//src/core:lib/transport/error_utils.h",
@ -1409,7 +1410,6 @@ grpc_cc_library(
"//src/core:lib/transport/timeout_encoding.h",
"//src/core:lib/transport/transport.h",
"//src/core:lib/transport/transport_impl.h",
"//src/core:lib/transport/batch_builder.h",
] +
# TODO(vigneshbabu): remove these
# These headers used to be vended by this target, but they have to be

@ -14,7 +14,7 @@ settings:
'#10': See the expand_version.py for all the quirks here
core_version: 32.0.0
csharp_major_version: 2
g_stands_for: gracious
g_stands_for: grandslam
protobuf_version: 3.22.2
version: 1.55.0-dev
configs:

@ -25,4 +25,4 @@
const char* grpc_version_string(void) { return "32.0.0"; }
const char* grpc_g_stands_for(void) { return "gracious"; }
const char* grpc_g_stands_for(void) { return "grandslam"; }

Loading…
Cancel
Save