Skip to content

Commit

Permalink
Merge branch 'hotfix/2023.3.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Oct 24, 2023
2 parents 876ec8e + 0ab4d24 commit e260e11
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ theme: apple
min_acl: public
sdk: iphoneos
module: Sora
module_version: 2023.3.0
module_version: 2023.3.1
swift_version: 5.8.1
xcodebuild_arguments:
- -parallelizeTargets
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@

- [UPDATE] CameraVideoCapturer のログを出力する
- @enm10k

## 2023.3.1

- [FIX] AVCaptureDevice.Format の選択時にフレームレートを考慮するように修正する
- フレームレートに 60 を設定しても、 AVFrameRateRange が 1-30 の AVCaptureDevice.Format が選択されてしまうケースがあった
- 修正前は、カメラから同じ解像度の AVCaptureDevice.Format が複数取得された場合、最初に解像度が一致した AVCaptureDevice.Format を選択しており、フレームレートが考慮されていないという問題があった
Expand Down
2 changes: 1 addition & 1 deletion Sora.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Sora"
s.version = "2023.3.0"
s.version = "2023.3.1"
s.summary = "Sora iOS SDK"
s.description = <<-DESC
A library to develop Sora client applications.
Expand Down
4 changes: 2 additions & 2 deletions Sora.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2023.3.0;
MARKETING_VERSION = 2023.3.1;
PRODUCT_BUNDLE_IDENTIFIER = jp.shiguredo.sora.ios.sdk.Sora;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
Expand Down Expand Up @@ -620,7 +620,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 2023.3.0;
MARKETING_VERSION = 2023.3.1;
PRODUCT_BUNDLE_IDENTIFIER = jp.shiguredo.sora.ios.sdk.Sora;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
Expand Down
2 changes: 1 addition & 1 deletion Sora/PackageInfo.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// :nodoc:
public enum SDKInfo {
// Sora iOS SDK のバージョンを定義する
public static let version = "2023.3.0"
public static let version = "2023.3.1"
}

/**
Expand Down

0 comments on commit e260e11

Please sign in to comment.