Skip to content

Commit d1a9bae

Browse files
committed
regenerate
1 parent 1be94b2 commit d1a9bae

File tree

12 files changed

+355
-109
lines changed

12 files changed

+355
-109
lines changed

lib/elixirpb.pb.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
defmodule Elixirpb.FileOptions do
22
@moduledoc false
33

4-
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto2
4+
use Protobuf,
5+
full_name: "elixirpb.FileOptions",
6+
protoc_gen_elixir_version: "0.15.0",
7+
syntax: :proto2
58

69
field :module_prefix, 1, optional: true, type: :string, json_name: "modulePrefix"
710
end

lib/elixirpb/pb_extension.pb.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Elixirpb.PbExtension do
22
@moduledoc false
33

4-
use Protobuf, protoc_gen_elixir_version: "0.14.1"
4+
use Protobuf, protoc_gen_elixir_version: "0.15.0"
55

66
extend Google.Protobuf.FileOptions, :file, 1047, optional: true, type: Elixirpb.FileOptions
77
end

lib/google/protobuf/any.pb.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ defmodule Google.Protobuf.Any do
8787
}
8888
"""
8989

90-
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
90+
use Protobuf,
91+
full_name: "google.protobuf.Any",
92+
protoc_gen_elixir_version: "0.15.0",
93+
syntax: :proto3
9194

9295
def descriptor do
9396
# credo:disable-for-next-line

lib/google/protobuf/compiler/plugin.pb.ex

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
defmodule Google.Protobuf.Compiler.CodeGeneratorResponse.Feature do
22
@moduledoc false
33

4-
use Protobuf, enum: true, protoc_gen_elixir_version: "0.14.1", syntax: :proto2
4+
use Protobuf,
5+
enum: true,
6+
full_name: "google.protobuf.compiler.CodeGeneratorResponse.Feature",
7+
protoc_gen_elixir_version: "0.15.0",
8+
syntax: :proto2
59

610
field :FEATURE_NONE, 0
711
field :FEATURE_PROTO3_OPTIONAL, 1
@@ -11,7 +15,10 @@ end
1115
defmodule Google.Protobuf.Compiler.Version do
1216
@moduledoc false
1317

14-
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto2
18+
use Protobuf,
19+
full_name: "google.protobuf.compiler.Version",
20+
protoc_gen_elixir_version: "0.15.0",
21+
syntax: :proto2
1522

1623
field :major, 1, optional: true, type: :int32
1724
field :minor, 2, optional: true, type: :int32
@@ -22,7 +29,10 @@ end
2229
defmodule Google.Protobuf.Compiler.CodeGeneratorRequest do
2330
@moduledoc false
2431

25-
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto2
32+
use Protobuf,
33+
full_name: "google.protobuf.compiler.CodeGeneratorRequest",
34+
protoc_gen_elixir_version: "0.15.0",
35+
syntax: :proto2
2636

2737
field :file_to_generate, 1, repeated: true, type: :string, json_name: "fileToGenerate"
2838
field :parameter, 2, optional: true, type: :string
@@ -46,7 +56,10 @@ end
4656
defmodule Google.Protobuf.Compiler.CodeGeneratorResponse.File do
4757
@moduledoc false
4858

49-
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto2
59+
use Protobuf,
60+
full_name: "google.protobuf.compiler.CodeGeneratorResponse.File",
61+
protoc_gen_elixir_version: "0.15.0",
62+
syntax: :proto2
5063

5164
field :name, 1, optional: true, type: :string
5265
field :insertion_point, 2, optional: true, type: :string, json_name: "insertionPoint"
@@ -61,7 +74,10 @@ end
6174
defmodule Google.Protobuf.Compiler.CodeGeneratorResponse do
6275
@moduledoc false
6376

64-
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto2
77+
use Protobuf,
78+
full_name: "google.protobuf.compiler.CodeGeneratorResponse",
79+
protoc_gen_elixir_version: "0.15.0",
80+
syntax: :proto2
6581

6682
field :error, 1, optional: true, type: :string
6783
field :supported_features, 2, optional: true, type: :uint64, json_name: "supportedFeatures"

0 commit comments

Comments
 (0)