Skip to content

Commit

Permalink
Prepare for next release v1.0.53 (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
onurpolattimur authored May 22, 2024
1 parent 41ee592 commit 19a534b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ Apache Maven:
<dependency>
<groupId>io.craftgate</groupId>
<artifactId>craftgate</artifactId>
<version>1.0.52</version>
<version>1.0.53</version>
</dependency>
```
Gradle Groovy DSL
```
implementation 'io.craftgate:craftgate:1.0.52'
implementation 'io.craftgate:craftgate:1.0.53'
```
Gradle Kotlin DSL
```
implementation("io.craftgate:craftgate:1.0.52")
implementation("io.craftgate:craftgate:1.0.53")
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/craftgate/adapter/BaseAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private static Map<String, String> createHttpHeaders(Object request, String path
headers.put(API_KEY_HEADER_NAME, options.getApiKey());
headers.put(RANDOM_HEADER_NAME, randomString);
headers.put(AUTH_VERSION_HEADER_NAME, API_VERSION_HEADER_VALUE);
headers.put(CLIENT_VERSION_HEADER_NAME, CLIENT_VERSION_HEADER_VALUE + ":1.0.52");
headers.put(CLIENT_VERSION_HEADER_NAME, CLIENT_VERSION_HEADER_VALUE + ":1.0.53");
headers.put(SIGNATURE_HEADER_NAME, prepareAuthorizationString(request, path, randomString, options));
if (Objects.nonNull(options.getLanguage())) {
headers.put(LANGUAGE_HEADER_NAME, options.getLanguage());
Expand Down

0 comments on commit 19a534b

Please sign in to comment.