Skip to content

Commit a0ff007

Browse files
authored
Prepare for release 5.4.5 (#496)
1 parent 784f4d4 commit a0ff007

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 5.4.5 (TBD - Unreleased)
1+
## 5.4.5 (2023-05-16)
22
- Update jackson-core to 2.15.0 [#492](https://github.com/dropbox/dropbox-sdk-java/issues/476)
33

44
## 5.4.4 (2022-10-17)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -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.4</version>
27+
<version>5.4.5</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.4'
36+
implementation 'com.dropbox.core:dropbox-core-sdk:5.4.5'
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.5-SNAPSHOT";
15+
return "5.4.5";
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.5-SNAPSHOT
3+
VERSION_NAME=5.4.5
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)