File tree Expand file tree Collapse file tree 6 files changed +11
-8
lines changed
src/main/java/video/api/uploader/api Expand file tree Collapse file tree 6 files changed +11
-8
lines changed 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.3.6] - 2024-04-25
5
+ - Add API to get rate limiting headers
6
+
4
7
## [ 1.3.5] - 2024-03-21
5
8
- Add missing proguard rules for gson and jackson
6
9
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Add this dependency to your project's POM:
62
62
<dependency >
63
63
<groupId >video.api</groupId >
64
64
<artifactId >android-video-uploader</artifactId >
65
- <version >1.3.5 </version >
65
+ <version >1.3.6 </version >
66
66
<scope >compile</scope >
67
67
</dependency >
68
68
```
@@ -72,7 +72,7 @@ Add this dependency to your project's POM:
72
72
Add this dependency to your project's build file:
73
73
74
74
``` groovy
75
- implementation "video.api:android-video-uploader:1.3.5 "
75
+ implementation "video.api:android-video-uploader:1.3.6 "
76
76
```
77
77
78
78
#### Others
@@ -85,7 +85,7 @@ mvn clean package
85
85
86
86
Then manually install the following JARs:
87
87
88
- * ` target/android-video-uploader-1.3.5 .jar `
88
+ * ` target/android-video-uploader-1.3.6 .jar `
89
89
* ` target/lib/*.jar `
90
90
91
91
### Code sample
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apply plugin: 'maven-publish'
5
5
apply plugin : ' kotlin-android'
6
6
7
7
group = ' video.api'
8
- version = ' 1.3.5 '
8
+ version = ' 1.3.6 '
9
9
10
10
buildscript {
11
11
repositories {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ apply plugin: 'maven-publish'
18
18
apply plugin : ' signing'
19
19
20
20
def isReleaseBuild () {
21
- return ! " 1.3.5 " . contains(" SNAPSHOT" )
21
+ return ! " 1.3.6 " . contains(" SNAPSHOT" )
22
22
}
23
23
24
24
def getReleaseRepositoryUrl () {
@@ -57,7 +57,7 @@ afterEvaluate {
57
57
58
58
groupId = " video.api"
59
59
artifactId = " android-video-uploader"
60
- version = " 1.3.5 "
60
+ version = " 1.3.6 "
61
61
62
62
pom {
63
63
name = " video.api:android-video-uploader"
Original file line number Diff line number Diff line change 5
5
<artifactId >android-video-uploader</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >${project.groupId} :${project.artifactId} </name >
8
- <version >1.3.5 </version >
8
+ <version >1.3.6 </version >
9
9
<url >https://github.com/apivideo/api.video-android-uploader</url >
10
10
<description >The official Android api.video uploader</description >
11
11
<scm >
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ private OkHttpClient initHttpClient(List<Interceptor> interceptors) {
118
118
private void init () {
119
119
verifyingSsl = true ;
120
120
json = new JSON ();
121
- addDefaultHeader ("AV-Origin-Client" , "android-uploader:1.3.5 " );
121
+ addDefaultHeader ("AV-Origin-Client" , "android-uploader:1.3.6 " );
122
122
}
123
123
124
124
private boolean isValid (String regex , String field ) {
You can’t perform that action at this time.
0 commit comments