Skip to content

Commit 1eeb4a3

Browse files
committed
Bump version to 5.0.2
1 parent 4226c5f commit 1eeb4a3

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=$(shell grep -om1 -E '<version>[0-9\.]+<\/version>' pom.xml | head -n 1 | sed 's/<version>\(.*\)<\/version>/\1/')
1+
VERSION=$(shell grep -om1 -E '<version>[0-9\.]+</version>' pom.xml | head -n 1 | sed 's/<version>\(.*\)<\/version>/\1/')
22
DIST=target/dist
33

44
clean:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Add this dependency to your project's POM:
5353
<dependency>
5454
<groupId>one.talon</groupId>
5555
<artifactId>talon-one-client</artifactId>
56-
<version>5.0.1</version>
56+
<version>5.0.2</version>
5757
<scope>compile</scope>
5858
</dependency>
5959
```
@@ -63,7 +63,7 @@ Add this dependency to your project's POM:
6363
Add this dependency to your project's build file:
6464

6565
```groovy
66-
compile "one.talon:talon-one-client:5.0.1"
66+
compile "one.talon:talon-one-client:5.0.2"
6767
```
6868

6969
### Others
@@ -76,7 +76,7 @@ mvn clean package
7676

7777
Then manually install the following JARs:
7878

79-
* `target/talon-one-client-5.0.1.jar`
79+
* `target/talon-one-client-5.0.2.jar`
8080
* `target/lib/*.jar`
8181

8282
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'java'
44

55
group = 'one.talon'
6-
version = '5.0.1'
6+
version = '5.0.2'
77

88
buildscript {
99
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 := "one.talon",
44
name := "talon-one-client",
5-
version := "5.0.1",
5+
version := "5.0.2",
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>talon-one-client</artifactId>
66
<packaging>jar</packaging>
77
<name>talon-one-client</name>
8-
<version>5.0.1</version>
8+
<version>5.0.2</version>
99
<url>https://github.com/talon-one/maven-artefacts</url>
1010
<description>Talon.One unified JAVA SDK. It allows for programmatic access to the integration and management API with their respective authentication strategies</description>
1111
<scm>

src/main/java/one/talon/ApiClient.java

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

130130
// Set default User-Agent.
131-
setUserAgent("OpenAPI-Generator/5.0.1/java");
131+
setUserAgent("OpenAPI-Generator/5.0.2/java");
132132

133133
authentications = new HashMap<String, Authentication>();
134134
}

0 commit comments

Comments
 (0)