Skip to content

Commit

Permalink
Prepare for next release v1.0.52 (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
sotuzun authored May 17, 2024
1 parent f42185f commit 9e71a99
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.51</version>
<version>1.0.52</version>
</dependency>
```
Gradle Groovy DSL
```
implementation 'io.craftgate:craftgate:1.0.51'
implementation 'io.craftgate:craftgate:1.0.52'
```
Gradle Kotlin DSL
```
implementation("io.craftgate:craftgate:1.0.51")
implementation("io.craftgate:craftgate:1.0.52")
```

## 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.51");
headers.put(CLIENT_VERSION_HEADER_NAME, CLIENT_VERSION_HEADER_VALUE + ":1.0.52");
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 9e71a99

Please sign in to comment.