Skip to content

Commit

Permalink
Merge pull request #118 from apivideo/chore/java_swift_android_rate_l…
Browse files Browse the repository at this point in the history
…imiting_release

chore(config): bump java and swift clients/uploaders version
  • Loading branch information
bot-api-video authored Apr 25, 2024
2 parents c1b33ba + cc7ac74 commit 83d6f8a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All changes to this project will be documented in this file.

## [1.3.3] - 2024-04-25
- Add API to get rate limiting headers

## [1.3.2] - 2024-02-19
- Update VideoStatusIngest enum

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>video.api</groupId>
<artifactId>java-api-client</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -78,7 +78,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
implementation "video.api:java-api-client:1.3.2"
implementation "video.api:java-api-client:1.3.3"
```

#### Others
Expand All @@ -91,7 +91,7 @@ mvn clean package

Then manually install the following JARs:

* `target/java-api-client-1.3.2.jar`
* `target/java-api-client-1.3.3.jar`
* `target/lib/*.jar`

### Code sample
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'com.diffplug.spotless'
apply plugin: 'maven-publish'

group = 'video.api'
version = '1.3.2'
version = '1.3.3'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>java-api-client</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<version>1.3.2</version>
<version>1.3.3</version>
<url>https://github.com/apivideo/api.video-java-client</url>
<description>api.video Java API client</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/video/api/client/api/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private OkHttpClient initHttpClient(List<Interceptor> interceptors) {
private void init() {
verifyingSsl = true;
json = new JSON();
addDefaultHeader("AV-Origin-Client", "java:1.3.2");
addDefaultHeader("AV-Origin-Client", "java:1.3.3");
}

private boolean isValid(String regex, String field) {
Expand Down

0 comments on commit 83d6f8a

Please sign in to comment.