diff --git a/CHANGES.md b/CHANGES.md index d37144f..80b993a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -17,11 +17,13 @@ - @melpon - [CHANGE] Ubuntu 20.04 のビルドを削除 - @melpon -- [UPDATE] Sora C++ SDK を `2024.7.0` に上げる +- [UPDATE] Sora C++ SDK を `2024.8.0` に上げる - それに伴って以下のライブラリのバージョンも上げる - - libwebrtc のバージョンを `m127.6533.1.1` に上げる - - Boost のバージョンを `1.85.0` に上げる - - CMake のバージョンを `3.29.6` に上げる + - libwebrtc のバージョンを `m128.6613.2.0` に上げる + - Boost のバージョンを `1.86.0` に上げる + - CMake のバージョンを `3.30.3` に上げる + - `#include ` を `#include ` に置き換える + - `boost::json::error_code` を `boost::system::error_code` に置き換える - @melpon @voluntas - [UPDATE] Blend2D, AsmJit を最新版に上げる - @melpon diff --git a/VERSION b/VERSION index 46e5878..06aa6de 100644 --- a/VERSION +++ b/VERSION @@ -1,9 +1,9 @@ ZAKURO_VERSION=2024.2.0-canary.1 -SORA_CPP_SDK_VERSION=2024.7.0 -WEBRTC_BUILD_VERSION=m127.6533.1.1 -BOOST_VERSION=1.85.0 +SORA_CPP_SDK_VERSION=2024.8.0-canary.3 +WEBRTC_BUILD_VERSION=m128.6613.2.0 +BOOST_VERSION=1.86.0 CLI11_VERSION=v2.4.2 -CMAKE_VERSION=3.29.6 +CMAKE_VERSION=3.30.3 BLEND2D_VERSION=c966273935e70ce1bed328993ee40d7cfe8fef5c ASMJIT_VERSION=062e69ca81defa35eb0ee15f7412f49a0dad3cdb OPENH264_VERSION=v2.4.1 diff --git a/src/util.cpp b/src/util.cpp index 453a29d..141d106 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -17,7 +17,7 @@ #include // WebRTC -#include +#include #include "zakuro.h" #include "zakuro_version.h" @@ -240,7 +240,7 @@ void Util::ParseArgs(const std::vector& cargs, auto is_json = CLI::Validator( [](std::string input) -> std::string { - boost::json::error_code ec; + boost::system::error_code ec; boost::json::parse(input, ec); if (ec) { return "Value " + input + " is not JSON Value"; diff --git a/src/virtual_client.cpp b/src/virtual_client.cpp index 344adef..12a329d 100644 --- a/src/virtual_client.cpp +++ b/src/virtual_client.cpp @@ -15,6 +15,7 @@ #include #include #include +#include std::shared_ptr VirtualClient::Create( VirtualClientConfig config) {