File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ Pod::Spec.new do |s|
5
5
s . tvos . deployment_target = '10.0'
6
6
# Add back when CocoaPods/CocoaPods#11558 is released
7
7
#s.watchos.deployment_target = '3.0'
8
- s . version = '1.2.2 '
9
- s . source = { :git => 'https://github.com/apivideo/api.video-swift-uploader' , :tag => 'v1.2.2 ' }
8
+ s . version = '1.2.3 '
9
+ s . source = { :git => 'https://github.com/apivideo/api.video-swift-uploader' , :tag => 'v1.2.3 ' }
10
10
s . authors = { 'Ecosystem Team' => 'ecosystem@api.video' }
11
11
s . license = { :type => 'MIT' }
12
12
s . homepage = 'https://docs.api.video'
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All changes to this project will be documented in this file.
3
3
4
+ ## [ 1.2.3] - 2024-04-25
5
+ - Add API to get rate limiting headers
6
+
4
7
## [ 1.2.2] - 2023-08-25
5
8
- Fix progressive upload with upload token and video id
6
9
Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ It allows you to upload videos in two ways:
52
52
Specify it in your ` Cartfile ` :
53
53
54
54
```
55
- github "apivideo/api.video-swift-uploader" ~> 1.2.2
55
+ github "apivideo/api.video-swift-uploader" ~> 1.2.3
56
56
```
57
57
58
58
Run ` carthage update `
59
59
60
60
#### CocoaPods
61
61
62
- Add ` pod 'ApiVideoUploader', '1.2.2 ' ` in your ` Podfile `
62
+ Add ` pod 'ApiVideoUploader', '1.2.3 ' ` in your ` Podfile `
63
63
64
64
Run ` pod install `
65
65
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import Foundation
8
8
public class ApiVideoUploader {
9
9
public static var apiKey : String ? = nil
10
10
public static var basePath = " https://ws.api.video "
11
- internal static var customHeaders : [ String : String ] = [ " AV-Origin-Client " : " swift-uploader:1.2.2 " ]
11
+ internal static var customHeaders : [ String : String ] = [ " AV-Origin-Client " : " swift-uploader:1.2.3 " ]
12
12
private static var chunkSize : Int = 50 * 1024 * 1024
13
13
internal static var requestBuilderFactory : RequestBuilderFactory = AlamofireRequestBuilderFactory ( )
14
14
internal static var credential = ApiVideoCredential ( )
Original file line number Diff line number Diff line change 7
7
sources : [Sources]
8
8
info :
9
9
path : ./Info.plist
10
- version : 1.2.2
10
+ version : 1.2.3
11
11
settings :
12
12
APPLICATION_EXTENSION_API_ONLY : true
13
13
scheme : {}
You can’t perform that action at this time.
0 commit comments