Skip to content

Commit 86f0a89

Browse files
VCSWP-20273(Ensure all SDKs generate a consistent MIT License) (#47)
* Added license * Updated license * Updated Changelog * Updated versioning --------- Co-authored-by: medgeston <[email protected]>
1 parent 310815b commit 86f0a89

File tree

7 files changed

+25
-7
lines changed

7 files changed

+25
-7
lines changed

CHANGELOG.md

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

1010
None
11+
<a name="5.5.1"></a>
12+
13+
## [5.5.1] - 2023-09-01
14+
15+
### Added
16+
17+
- MIT License
18+
1119
<a name="5.5.0"></a>
1220

1321
## [5.5.0] - 2023-08-15

LICENSE.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
MIT License
2+
-------------
3+
4+
Copyright (c) 2023 FreeClimbAPI
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7+
8+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9+
10+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Add this dependency to your project's POM:
4141
<dependency>
4242
<groupId>com.github.freeclimbapi</groupId>
4343
<artifactId>freeclimb-java-client</artifactId>
44-
<version>5.5.0</version>
44+
<version>5.5.1</version>
4545
<scope>compile</scope>
4646
</dependency>
4747
```
@@ -57,7 +57,7 @@ Add this dependency to your project's build file:
5757
}
5858
5959
dependencies {
60-
implementation "com.github.freeclimbapi:freeclimb-java-client:5.5.0"
60+
implementation "com.github.freeclimbapi:freeclimb-java-client:5.5.1"
6161
implementation("com.squareup.okhttp3:okhttp:4.9.3")
6262
implementation("com.squareup.okhttp3:logging-interceptor:4.9.3")
6363
}
@@ -73,7 +73,7 @@ mvn clean package
7373

7474
Then manually install the following JARs:
7575

76-
- `target/freeclimb-java-client-5.5.0.jar`
76+
- `target/freeclimb-java-client-5.5.1.jar`
7777
- `target/lib/*.jar`
7878

7979
## 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.5.0'
7+
version = '5.5.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.5.0",
5+
version := "5.5.1",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>freeclimb-java-client</artifactId>
66
<packaging>jar</packaging>
77
<name>freeclimb-java-client</name>
8-
<version>5.5.0</version>
8+
<version>5.5.1</version>
99
<url>https://github.com/freeclimbapi/java-sdk</url>
1010
<description>FreeClimb Java Client</description>
1111
<scm>

src/main/java/com/github/freeclimbapi/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ private void init() {
131131
json = new JSON();
132132

133133
// Set default User-Agent.
134-
setUserAgent("OpenAPI-Generator/5.5.0/java");
134+
setUserAgent("OpenAPI-Generator/5.5.1/java");
135135

136136
authentications = new HashMap<String, Authentication>();
137137
}

0 commit comments

Comments
 (0)