Skip to content

Commit dfaed05

Browse files
Prepare for next release v1.0.59 (#205)
1 parent 161d956 commit dfaed05

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ Apache Maven:
1717
<dependency>
1818
<groupId>io.craftgate</groupId>
1919
<artifactId>craftgate</artifactId>
20-
<version>1.0.58</version>
20+
<version>1.0.59</version>
2121
</dependency>
2222
```
2323
Gradle Groovy DSL
2424
```
25-
implementation 'io.craftgate:craftgate:1.0.58'
25+
implementation 'io.craftgate:craftgate:1.0.59'
2626
```
2727
Gradle Kotlin DSL
2828
```
29-
implementation("io.craftgate:craftgate:1.0.58")
29+
implementation("io.craftgate:craftgate:1.0.59")
3030
```
3131

3232
## Usage

src/main/java/io/craftgate/adapter/BaseAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private static Map<String, String> createHttpHeaders(Object request, String path
4040
headers.put(API_KEY_HEADER_NAME, options.getApiKey());
4141
headers.put(RANDOM_HEADER_NAME, randomString);
4242
headers.put(AUTH_VERSION_HEADER_NAME, API_VERSION_HEADER_VALUE);
43-
headers.put(CLIENT_VERSION_HEADER_NAME, CLIENT_VERSION_HEADER_VALUE + ":1.0.58");
43+
headers.put(CLIENT_VERSION_HEADER_NAME, CLIENT_VERSION_HEADER_VALUE + ":1.0.59");
4444
headers.put(SIGNATURE_HEADER_NAME, prepareAuthorizationString(request, path, randomString, options));
4545
if (Objects.nonNull(options.getLanguage())) {
4646
headers.put(LANGUAGE_HEADER_NAME, options.getLanguage());

0 commit comments

Comments
 (0)