Skip to content

Commit 6e3f875

Browse files
authored
Prepare for Release 5.4.3 (#474)
* Prepare for release 5.4.3 * Updating readme with new version.
1 parent 7fd13fc commit 6e3f875

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.4.3 (2022-10-14)
2+
---------------------------------------------
3+
- Fix: [Make Kotlin optional in OSGI Import-Package statement](https://github.com/dropbox/dropbox-sdk-java/pull/473)
4+
15
## 5.4.2 (2022-10-03)
26
---------------------------------------------
37
- Update dropbox-api-spec to point to more recent version (Sept 01, 2022) [#431](https://github.com/dropbox/dropbox-sdk-java/pull/431)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Java library to access [Dropbox's HTTP-based Core API v2](https://www.dropbox.
88

99
License: [MIT](License.txt)
1010

11-
Documentation: [Javadocs](https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.4.2/)
11+
Documentation: [Javadocs](https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.4.3/)
1212

1313
## Setup
1414

@@ -24,7 +24,7 @@ If you're using Maven, then edit your project's "pom.xml" and add this to the `<
2424
<dependency>
2525
<groupId>com.dropbox.core</groupId>
2626
<artifactId>dropbox-core-sdk</artifactId>
27-
<version>5.4.2</version>
27+
<version>5.4.3</version>
2828
</dependency>
2929
```
3030

@@ -33,7 +33,7 @@ If you are using Gradle, then edit your project's "build.gradle" and add this to
3333
```groovy
3434
dependencies {
3535
// ...
36-
implementation 'com.dropbox.core:dropbox-core-sdk:5.4.2'
36+
implementation 'com.dropbox.core:dropbox-core-sdk:5.4.3'
3737
}
3838
```
3939

dropbox-sdk-java/src/main/java/com/dropbox/core/DbxSdkVersion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class DbxSdkVersion
1212
// https://github.com/dropbox/dropbox-sdk-java/issues/357
1313
private static String loadVersion()
1414
{
15-
return "5.4.3-SNAPSHOT";
15+
return "5.4.3";
1616
}
1717
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# POM
22
GROUP = com.dropbox.core
3-
VERSION_NAME=5.4.3-SNAPSHOT
3+
VERSION_NAME=5.4.3
44

55
POM_NAME = Dropbox SDK Java
66
POM_DESCRIPTION = A Java library to access Dropbox's HTTP-based Core API v2.

0 commit comments

Comments
 (0)