4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-03 16:37:44 +00:00

Bump google.golang.org/protobuf from 1.29.0 to 1.29.1 (#2018)

Bumps [google.golang.org/protobuf](https://github.com/protocolbuffers/protobuf-go) from 1.29.0 to 1.29.1.
- [Release notes](https://github.com/protocolbuffers/protobuf-go/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf-go/blob/master/release.bash)
- [Commits](https://github.com/protocolbuffers/protobuf-go/compare/v1.29.0...v1.29.1)

---
updated-dependencies:
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2023-03-15 22:22:38 +01:00
committed by GitHub
parent 839f384e45
commit 60639b6e50
5 changed files with 8 additions and 8 deletions

View File

@ -88,15 +88,15 @@ func parseNumber(input []byte) number {
neg = true
s = s[1:]
size++
if len(s) == 0 {
return number{}
}
// Consume any whitespace or comments between the
// negative sign and the rest of the number
lenBefore := len(s)
s = consume(s, 0)
sep = lenBefore - len(s)
size += sep
if len(s) == 0 {
return number{}
}
}
switch {

View File

@ -52,7 +52,7 @@ import (
const (
Major = 1
Minor = 29
Patch = 0
Patch = 1
PreRelease = ""
)