Skip to content

Commit 51de78c

Browse files
committed
gRPC 1.80.0
1 parent 079cab6 commit 51de78c

3 files changed

Lines changed: 10 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.zig-cache
22
zig-out
3+
zig-pkg

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
| x86_64 |||
88
| arm 64 |||
99

10-
| Refname | libGRPC version | Core version | Zig `0.16.x` | Zig `0.15.x` |
11-
|-------------|-----------------------------|--------------|:------------:|:------------:|
12-
| `grpc-1.80` | `v1.80.0-pre1` "glimmering" | `53.0.0` |||
13-
| `1.78.1+1` | `v1.78.1` "gusty" | `52.0.0` |||
14-
| `1.76.0+2` | `v1.76.0` "genuine" | `51.0.0` |||
10+
| Refname | libGRPC version | Core version | Zig `0.16.x` | Zig `0.15.x` |
11+
|:-----------|:-----------------------|-------------:|:------------:|:------------:|
12+
| `1.80.0` | `v1.80.0` "glimmering" | `53.0.0` |||
13+
| `1.78.1+1` | `v1.78.1` "gusty" | `52.0.0` |||
14+
| `1.76.0+2` | `v1.76.0` "genuine" | `51.0.0` |||
1515

1616
## Use
1717

@@ -51,7 +51,7 @@ exe.linkLibrary(grpc.artifact("grpc"));
5151
When bumping upstream version, also bump dependencies. Example:
5252

5353
```shell
54-
zig fetch --save=upstream git+https://github.com/grpc/grpc#v1.78.1
54+
zig fetch --save=upstream git+https://github.com/grpc/grpc#v1.80.0
5555
zig fetch --save=abseil git+https://github.com/abseil/abseil-cpp#20250512.1
5656
zig fetch --save=re2 git+https://github.com/google/re2#2022-04-01
5757
zig fetch --save=boringssl git+https://github.com/google/boringssl#c63fadbde60a2224c22189d14c4001bbd2a3a629

build.zig.zon

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .grpc,
3-
.version = "1.80.0-pre1",
3+
.version = "1.80.0",
44
.fingerprint = 0x2b44e58c15cd55d6,
55
.minimum_zig_version = "0.15.0",
66

@@ -14,8 +14,8 @@
1414

1515
.dependencies = .{
1616
.upstream = .{
17-
.url = "git+https://github.com/grpc/grpc?ref=v1.80.0-pre1#be4c1c55b69493868241bfffd4bc318d3d592656",
18-
.hash = "N-V-__8AAI9OpwQl8luH0eR-jrC3VZ6Mwcqvm_6rAxMvNfpq",
17+
.url = "git+https://github.com/grpc/grpc?ref=v1.80.0#f5e2d6e856176c2f6b7691032adfefe21e5f64c1",
18+
.hash = "N-V-__8AANNYpwQkP4eQOlrt_DarfPhC7PhWauwIGOF5Tb2k",
1919
},
2020
.abseil = .{
2121
.url = "git+https://github.com/abseil/abseil-cpp?ref=20250512.1#76bb24329e8bf5f39704eb10d21b9a80befa7c81",

0 commit comments

Comments
 (0)