Skip to content

Commit 38497a0

Browse files
author
Phrase
committed
1 parent 0b179cf commit 38497a0

File tree

236 files changed

+250
-238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+250
-238
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [2.7.0](https://github.com/phrase/openapi/compare/java-v2.6.0...java-v2.7.0) (2024-11-27)
4+
5+
6+
### Features
7+
8+
* **API:** autotranslate param in key creation [STRINGS-786] ([#713](https://github.com/phrase/openapi/issues/713)) ([581d0ff](https://github.com/phrase/openapi/commit/581d0ff5f1d06757e5ddd9603b78fc8d435d68ee))
9+
10+
11+
### Bug Fixes
12+
13+
* **API:** Comment creation schema fix #STRINGS-866 ([#718](https://github.com/phrase/openapi/issues/718)) ([e201d13](https://github.com/phrase/openapi/commit/e201d1360c89698dd8d3642cc28f89dd0e50a1fb))
14+
315
## [2.6.0](https://github.com/phrase/openapi/compare/java-v2.5.0...java-v2.6.0) (2024-11-08)
416

517

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Phrase Strings API Reference
44

55
- API version: 2.0.0
6-
- Package version: 2.6.0
6+
- Package version: 2.7.0
77

88
Phrase Strings is a translation management platform for software projects. You can collaborate on language file translation with your team or order translations through our platform. The API allows you to import locale files, download locale files, tag keys or interact in other ways with the localization data stored in Phrase Strings for your account.
99

@@ -28,7 +28,7 @@ Add this dependency to your project's POM:
2828
<dependency>
2929
<groupId>com.phrase</groupId>
3030
<artifactId>phrase-java</artifactId>
31-
<version>2.6.0</version>
31+
<version>2.7.0</version>
3232
<scope>compile</scope>
3333
</dependency>
3434
```
@@ -38,7 +38,7 @@ Add this dependency to your project's POM:
3838
Add this dependency to your project's build file:
3939

4040
```groovy
41-
compile "com.phrase:phrase-java:2.6.0"
41+
compile "com.phrase:phrase-java:2.7.0"
4242
```
4343

4444
### Others
@@ -51,7 +51,7 @@ mvn clean package
5151

5252
Then manually install the following JARs:
5353

54-
- `target/phrase-java-2.6.0.jar`
54+
- `target/phrase-java-2.7.0.jar`
5555
- `target/lib/*.jar`
5656

5757
### Github package repository

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
}
2020

2121
group = 'com.phrase'
22-
version = '2.6.0'
22+
version = '2.7.0'
2323

2424
java {
2525
withSourcesJar()

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.phrase",
44
name := "phrase-java",
5-
version := "2.6.0",
5+
version := "2.7.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>phrase-java</artifactId>
66
<packaging>jar</packaging>
77
<name>phrase-java</name>
8-
<version>2.6.0</version>
8+
<version>2.7.0</version>
99
<url>https://developers.phrase.com</url>
1010
<description>Java Client for Phrase Strings API</description>
1111
<scm>

src/main/java/com/phrase/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private void init() {
109109
json = new JSON();
110110

111111
// Set default User-Agent.
112-
setUserAgent("OpenAPI-Generator/2.6.0/java");
112+
setUserAgent("OpenAPI-Generator/2.7.0/java");
113113

114114
authentications = new HashMap<String, Authentication>();
115115
}

src/main/java/com/phrase/client/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.Map;
1616
import java.util.List;
1717

18-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:13:47.711589Z[Etc/UTC]")
18+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:16:10.996448Z[Etc/UTC]")
1919
public class ApiException extends Exception {
2020
private int code = 0;
2121
private Map<String, List<String>> responseHeaders = null;

src/main/java/com/phrase/client/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:13:47.711589Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:16:10.996448Z[Etc/UTC]")
1616
public class Configuration {
1717
private static ApiClient defaultApiClient = new ApiClient();
1818

src/main/java/com/phrase/client/Pair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:13:47.711589Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:16:10.996448Z[Etc/UTC]")
1616
public class Pair {
1717
private String name = "";
1818
private String value = "";

src/main/java/com/phrase/client/StringUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
package com.phrase.client;
1414

15-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:13:47.711589Z[Etc/UTC]")
15+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T08:16:10.996448Z[Etc/UTC]")
1616
public class StringUtil {
1717
/**
1818
* Check if the given array contains the given value (with case-insensitive comparison).

0 commit comments

Comments
 (0)