Merge pull request #15614 from kpayson64/bump_112_version

Bump 1.12.1
diff --git a/src/compiler/objective_c_generator.cc b/src/compiler/objective_c_generator.cc
index e97494f..39f68cb 100644
--- a/src/compiler/objective_c_generator.cc
+++ b/src/compiler/objective_c_generator.cc
@@ -222,8 +222,7 @@
   map< ::grpc::string, ::grpc::string> vars = {
       {"service_class", ServiceClassName(service)}};
 
-  printer.Print(
-      vars, "@protocol $service_class$ <NSObject, GRPCProtoServiceInit>\n\n");
+  printer.Print(vars, "@protocol $service_class$ <NSObject>\n\n");
   for (int i = 0; i < service->method_count(); i++) {
     PrintMethodDeclarations(&printer, service->method(i));
   }
diff --git a/src/objective-c/ProtoRPC/ProtoService.h b/src/objective-c/ProtoRPC/ProtoService.h
index c411bed..29c4e9b 100644
--- a/src/objective-c/ProtoRPC/ProtoService.h
+++ b/src/objective-c/ProtoRPC/ProtoService.h
@@ -22,12 +22,6 @@
 @protocol GRXWriteable;
 @class GRXWriter;
 
-@protocol GRPCProtoServiceInit
-
-- (instancetype)initWithHost:(NSString *)host;
-
-@end
-
 __attribute__((deprecated("Please use GRPCProtoService."))) @interface ProtoService
     : NSObject -
       (instancetype)initWithHost : (NSString *)host packageName