From 3f7a987f8ea3f30c601497084e841332b695370a Mon Sep 17 00:00:00 2001 From: "cathy-cloud[bot]" <154095190+cathy-cloud[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 00:03:04 +0000 Subject: [PATCH] Bump OBS websocket protocol to 5.5.1 (#162) Co-authored-by: cathy-cloud[bot] <154095190+cathy-cloud[bot]@users.noreply.github.com> --- README.md | 8 ++++---- version.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 631d612..082cbf0 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.0-blue?logo=obs-studio&style=flat-square -[protocol-url]: https://github.com/obsproject/obs-websocket/blob/5.5.0/docs/generated/protocol.md +[protocol-img]: https://img.shields.io/badge/obs--websocket-v5.5.1-blue?logo=obs-studio&style=flat-square +[protocol-url]: https://github.com/obsproject/obs-websocket/blob/5.5.1/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 @@ -68,7 +68,7 @@ The corresponding output: ❯ go run _examples/basic/main.go OBS Studio version: 30.2.0 Server protocol version: 5.5.0 -Client protocol version: 5.5.0 -Client library version: 1.4.0 +Client protocol version: 5.5.1 +Client library version: 1.4.1 ``` [//]: # (snippet-2-end) diff --git a/version.go b/version.go index e619adf..a881aa1 100644 --- a/version.go +++ b/version.go @@ -7,7 +7,7 @@ import ( const lib = "github.com/andreykaipov/goobs" -var ProtocolVersion = "5.5.0" +var ProtocolVersion = "5.5.1" var LibraryVersion = func() string { bi, ok := debug.ReadBuildInfo()