From 8d034f53a46f019d07f4ee3548b4b94ffdc2e5d5 Mon Sep 17 00:00:00 2001 From: tt2468 Date: Thu, 4 Feb 2021 07:47:36 -0800 Subject: [PATCH] Chore: Bump version to 4.9.0 --- CI/macos/obs-websocket.pkgproj | 2 +- CMakeLists.txt | 2 +- docs/partials/introduction.md | 2 +- installer/installer.iss | 2 +- src/obs-websocket.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CI/macos/obs-websocket.pkgproj b/CI/macos/obs-websocket.pkgproj index e3b175e4..7c574505 100644 --- a/CI/macos/obs-websocket.pkgproj +++ b/CI/macos/obs-websocket.pkgproj @@ -518,7 +518,7 @@ OVERWRITE_PERMISSIONS VERSION - 4.8.0 + 4.9.0 PROJECT_COMMENTS diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b6f2550..0de5f1f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(obs-websocket VERSION 4.8.0) +project(obs-websocket VERSION 4.9.0) set(CMAKE_PREFIX_PATH "${QTDIR}") set(CMAKE_INCLUDE_CURRENT_DIR ON) diff --git a/docs/partials/introduction.md b/docs/partials/introduction.md index 496363e7..db7781bf 100644 --- a/docs/partials/introduction.md +++ b/docs/partials/introduction.md @@ -1,4 +1,4 @@ -# obs-websocket 4.8.0 protocol reference +# obs-websocket 4.9.0 protocol reference # General Introduction Messages are exchanged between the client and the server as JSON objects. diff --git a/installer/installer.iss b/installer/installer.iss index e94ff579..0109c12d 100644 --- a/installer/installer.iss +++ b/installer/installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "obs-websocket" -#define MyAppVersion "4.8.0" +#define MyAppVersion "4.9.0" #define MyAppPublisher "Stephane Lepin" #define MyAppURL "http://github.com/Palakis/obs-websocket" diff --git a/src/obs-websocket.h b/src/obs-websocket.h index 5f118d28..7f139e50 100644 --- a/src/obs-websocket.h +++ b/src/obs-websocket.h @@ -56,6 +56,6 @@ ConfigPtr GetConfig(); WSServerPtr GetServer(); WSEventsPtr GetEventsSystem(); -#define OBS_WEBSOCKET_VERSION "4.8.0" +#define OBS_WEBSOCKET_VERSION "4.9.0" #define blog(level, msg, ...) blog(level, "[obs-websocket] " msg, ##__VA_ARGS__)