Skip to content

Commit 7b8ccdf

Browse files
Merge pull request #90 from apivideo/chore/java_swift_android_rate_limiting_release
chore(config): bump java and swift clients/uploaders version
2 parents 020d190 + ccd0f4c commit 7b8ccdf

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

ApiVideoUploader.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Pod::Spec.new do |s|
55
s.tvos.deployment_target = '10.0'
66
# Add back when CocoaPods/CocoaPods#11558 is released
77
#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' }
1010
s.authors = { 'Ecosystem Team' => 'ecosystem@api.video' }
1111
s.license = { :type => 'MIT' }
1212
s.homepage = 'https://docs.api.video'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
All changes to this project will be documented in this file.
33

4+
## [1.2.3] - 2024-04-25
5+
- Add API to get rate limiting headers
6+
47
## [1.2.2] - 2023-08-25
58
- Fix progressive upload with upload token and video id
69

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ It allows you to upload videos in two ways:
5252
Specify it in your `Cartfile`:
5353

5454
```
55-
github "apivideo/api.video-swift-uploader" ~> 1.2.2
55+
github "apivideo/api.video-swift-uploader" ~> 1.2.3
5656
```
5757

5858
Run `carthage update`
5959

6060
#### CocoaPods
6161

62-
Add `pod 'ApiVideoUploader', '1.2.2'` in your `Podfile`
62+
Add `pod 'ApiVideoUploader', '1.2.3'` in your `Podfile`
6363

6464
Run `pod install`
6565

Sources/APIs.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Foundation
88
public class ApiVideoUploader {
99
public static var apiKey: String? = nil
1010
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"]
1212
private static var chunkSize: Int = 50 * 1024 * 1024
1313
internal static var requestBuilderFactory: RequestBuilderFactory = AlamofireRequestBuilderFactory()
1414
internal static var credential = ApiVideoCredential()

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ targets:
77
sources: [Sources]
88
info:
99
path: ./Info.plist
10-
version: 1.2.2
10+
version: 1.2.3
1111
settings:
1212
APPLICATION_EXTENSION_API_ONLY: true
1313
scheme: {}

0 commit comments

Comments
 (0)