File tree Expand file tree Collapse file tree
main/java/com/github/freeclimbapi
test/java/com/github/freeclimbapi Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -306,5 +306,5 @@ src/main/java/com/github/freeclimbapi/auth/ApiKeyAuth.java
306306src/main/java/com/github/freeclimbapi/auth/Authentication.java
307307src/main/java/com/github/freeclimbapi/auth/HttpBasicAuth.java
308308src/main/java/com/github/freeclimbapi/auth/HttpBearerAuth.java
309- src/test/java/com/github/freeclimbapi/AddToConferenceAllOfTest .java
310- src/test/java/com/github/freeclimbapi/AddToConferenceTest .java
309+ src/test/java/com/github/freeclimbapi/SMSTenDLCBrandTest .java
310+ src/test/java/com/github/freeclimbapi/SMSTenDLCPartnerCampaignBrandTest .java
Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99
1010None
1111
12+ <a name =" 5.4.3 " ></a >
13+
14+ ## [ 5.4.3] 2023-08-28
15+
16+ ### Changed
17+
18+ - Changed setters from public to private for specific read-only variables
19+
1220<a name =" 5.4.2 " ></a >
1321
1422## [ 5.4.2] 2023-07-26
Original file line number Diff line number Diff 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.2 </version >
43+ <version >5.4.3 </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.2 "
59+ implementation "com.github.freeclimbapi:freeclimb-java-client:5.4.3 "
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
7373Then manually install the following JARs:
7474
75- * ` target/freeclimb-java-client-5.4.2 .jar `
75+ * ` target/freeclimb-java-client-5.4.3 .jar `
7676* ` target/lib/*.jar `
7777
7878## Getting Started
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'java'
44apply plugin : ' com.diffplug.spotless'
55
66group = ' com.github.freeclimbapi'
7- version = ' 5.4.2 '
7+ version = ' 5.4.3 '
88
99buildscript {
1010 repositories {
Original file line number Diff line number Diff 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.2 " ,
5+ version := " 5.4.3 " ,
66 scalaVersion := " 2.11.4" ,
77 scalacOptions ++= Seq (" -feature" ),
88 javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
Original file line number Diff line number Diff line change 55 <artifactId >freeclimb-java-client</artifactId >
66 <packaging >jar</packaging >
77 <name >freeclimb-java-client</name >
8- <version >5.4.2 </version >
8+ <version >5.4.3 </version >
99 <url >https://github.com/freeclimbapi/java-sdk</url >
1010 <description >FreeClimb Java Client</description >
1111 <scm >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ private void init() {
131131 json = new JSON ();
132132
133133 // Set default User-Agent.
134- setUserAgent ("OpenAPI-Generator/5.4.2 /java" );
134+ setUserAgent ("OpenAPI-Generator/5.4.3 /java" );
135135
136136 authentications = new HashMap <String , Authentication >();
137137 }
Original file line number Diff line number Diff line change @@ -543,7 +543,7 @@ public String getCspId() {
543543 return cspId ;
544544 }
545545
546- public void setCspId (String cspId ) {
546+ private void setCspId (String cspId ) {
547547 this .cspId = cspId ;
548548 }
549549
@@ -559,7 +559,7 @@ public String getBrandId() {
559559 return brandId ;
560560 }
561561
562- public void setBrandId (String brandId ) {
562+ private void setBrandId (String brandId ) {
563563 this .brandId = brandId ;
564564 }
565565
@@ -1038,7 +1038,7 @@ public String getUniversalEin() {
10381038 return universalEin ;
10391039 }
10401040
1041- public void setUniversalEin (String universalEin ) {
1041+ private void setUniversalEin (String universalEin ) {
10421042 this .universalEin = universalEin ;
10431043 }
10441044
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ public String getBrandId() {
131131 return brandId ;
132132 }
133133
134- public void setBrandId (String brandId ) {
134+ private void setBrandId (String brandId ) {
135135 this .brandId = brandId ;
136136 }
137137
You can’t perform that action at this time.
0 commit comments