Skip to content

Commit a7535d0

Browse files
Resolve VCSWP-19762 (Unit Tests for Java SDK) (#42)
* Inital generation and test * Completed properties testing for Java SDK * Resolved property errors * WIP most method unit tests are working * Updated method test * Updated test * Updated formatting * Updated tests * Re-added missing tests * Adjusted Formatting * Added missing files * Updated formatting for property test * Updated Formatting for property and method testing * Added missing files * Updated DefaultApiTest * Updated versioning for java sdk * Updated formatting in changelog * Removed unused boolean flag --------- Co-authored-by: medgeston <[email protected]>
1 parent 1ab671e commit a7535d0

File tree

145 files changed

+19722
-3083
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+19722
-3083
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99

1010
None
1111

12+
<a name="5.4.1"></a>
13+
14+
## [5.4.1] 2023-07-19
15+
16+
### Added
17+
18+
- Updated versioning for the Java SDK
19+
1220
<a name="5.4.0"></a>
1321

1422
## [5.4.0] 2023-06-06

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.github.freeclimbapi</groupId>
4242
<artifactId>freeclimb-java-client</artifactId>
43-
<version>5.4.0</version>
43+
<version>5.4.1</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.github.freeclimbapi:freeclimb-java-client:5.4.0"
59+
implementation "com.github.freeclimbapi:freeclimb-java-client:5.4.1"
6060
implementation("com.squareup.okhttp3:okhttp:4.9.3")
6161
implementation("com.squareup.okhttp3:logging-interceptor:4.9.3")
6262
}
@@ -72,7 +72,7 @@ mvn clean package
7272

7373
Then manually install the following JARs:
7474

75-
* `target/freeclimb-java-client-5.4.0.jar`
75+
* `target/freeclimb-java-client-5.4.1.jar`
7676
* `target/lib/*.jar`
7777

7878
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.github.freeclimbapi'
7-
version = '5.4.0'
7+
version = '5.4.1'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.github.freeclimbapi",
44
name := "freeclimb-java-client",
5-
version := "5.4.0",
5+
version := "5.4.1",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

0 commit comments

Comments
 (0)