From 5ab3555a67b293197e02ef7b2e1360ee34cf064a Mon Sep 17 00:00:00 2001 From: "cathy-cloud[bot]" <154095190+cathy-cloud[bot]@users.noreply.github.com> Date: Sat, 1 Mar 2025 00:01:30 +0000 Subject: [PATCH] Bump OBS websocket protocol to 5.5.5 --- README.md | 12 ++++++------ version.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 350c49b..7ccfcfb 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ [![Build Status][build-img]][build-url] [![Go Report][goreport-img]][goreport-url] -[protocol-img]: https://img.shields.io/badge/obs--websocket-v5.5.4-blue?logo=obs-studio&style=flat-square -[protocol-url]: https://github.com/obsproject/obs-websocket/blob/5.5.4/docs/generated/protocol.md +[protocol-img]: https://img.shields.io/badge/obs--websocket-v5.5.5-blue?logo=obs-studio&style=flat-square +[protocol-url]: https://github.com/obsproject/obs-websocket/blob/5.5.5/docs/generated/protocol.md [doc-img]: https://img.shields.io/badge/pkg.go.dev-reference-blue?logo=go&logoColor=white&style=flat-square [doc-url]: https://pkg.go.dev/github.com/andreykaipov/goobs [build-img]: https://img.shields.io/github/actions/workflow/status/andreykaipov/goobs/ci.yml?logo=github&style=flat-square&branch=main @@ -66,9 +66,9 @@ The corresponding output: [//]: # (snippet-2-begin) ```console ❯ go run _examples/basic/main.go -OBS Studio version: 31.0.0 -Server protocol version: 5.5.3 -Client protocol version: 5.5.4 -Client library version: 1.5.3 +OBS Studio version: 31.0.1 +Server protocol version: 5.5.4 +Client protocol version: 5.5.5 +Client library version: 1.5.4 ``` [//]: # (snippet-2-end) diff --git a/version.go b/version.go index aa9a61f..6bc028e 100644 --- a/version.go +++ b/version.go @@ -7,7 +7,7 @@ import ( const lib = "github.com/andreykaipov/goobs" -var ProtocolVersion = "5.5.4" +var ProtocolVersion = "5.5.5" var LibraryVersion = func() string { bi, ok := debug.ReadBuildInfo()