Skip to content

Commit 9db2128

Browse files
author
Shakeel
committed
Update verison number
1 parent a9edca7 commit 9db2128

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://travis-ci.org/splunk/splunk-sdk-java.svg?branch=master)](https://travis-ci.org/splunk/splunk-sdk-java)
22
# The Splunk Software Development Kit for Java
33

4-
#### Version 1.6.2
4+
#### Version 1.6.3
55

66
The Splunk Software Development Kit (SDK) for Java contains library code and
77
examples designed to enable developers to build applications using Splunk.
@@ -101,7 +101,7 @@ To add the Splunk SDK for Java `.JAR` file as a dependency:
101101
<dependency>
102102
<groupId>com.splunk</groupId>
103103
<artifactId>splunk</artifactId>
104-
<version>1.6.2.0</version>
104+
<version>1.6.3.0</version>
105105
</dependency>
106106
</dependencies>
107107
```

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<project name="splunk-sdk-java" basedir="." default="dist" xmlns:jacoco="antlib:org.jacoco.ant"
2020
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="antlib:org.jacoco.ant ">
21-
<property name="version.number" value="1.6.2"/>
21+
<property name="version.number" value="1.6.3"/>
2222

2323
<!-- Paths within the repository that are referenced
2424
multiple times. -->

deploy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare -r scriptDirectory="$(dirname $(readlink -e $0))"
44
declare -r scriptName="$(basename $0)"
5-
declare -r version="1.6.2"
5+
declare -r version="1.6.3"
66

77
if [[ $# -ne 1 ]]; then
88
echo 1>&2 "Usage: ${scriptName} {local|staging||production}"

deploy.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ deploy \<repository-name>
99

1010
##DESCRIPTION
1111

12-
Deploy transmits **dist/splunk-1.6.2.jar**, **dist/splunk-1.6.2-javadoc.jar**, and
13-
**dist/splunk-1.6.2-sources.jar** to the **local**, **staging**, or **production**
12+
Deploy transmits **dist/splunk-1.6.3.jar**, **dist/splunk-1.6.3-javadoc.jar**, and
13+
**dist/splunk-1.6.3-sources.jar** to the **local**, **staging**, or **production**
1414
maven repository. Repository names are mapped to locations as follows.
1515

1616
| repository-name | location |
@@ -21,18 +21,18 @@ maven repository. Repository names are mapped to locations as follows.
2121

2222
After deployment you should find this tree structure at the location of your repository
2323

24-
com/splunk/splunk/1.6.2/
25-
├── splunk-1.6.2-javadoc.jar
26-
├── splunk-1.6.2-javadoc.jar.md5
27-
├── splunk-1.6.2-javadoc.jar.sha1
28-
├── splunk-1.6.2-sources.jar
29-
├── splunk-1.6.2-sources.jar.md5
30-
├── splunk-1.6.2-sources.jar.sha1
31-
├── splunk-1.6.2.jar
32-
├── splunk-1.6.2.jar.md5
33-
├── splunk-1.6.2.jar.sha1
34-
├── splunk-1.6.2.pom
35-
├── splunk-1.6.2.pom.md5
36-
└── splunk-1.6.2.pom.sha1
24+
com/splunk/splunk/1.6.3/
25+
├── splunk-1.6.3-javadoc.jar
26+
├── splunk-1.6.3-javadoc.jar.md5
27+
├── splunk-1.6.3-javadoc.jar.sha1
28+
├── splunk-1.6.3-sources.jar
29+
├── splunk-1.6.3-sources.jar.md5
30+
├── splunk-1.6.3-sources.jar.sha1
31+
├── splunk-1.6.3.jar
32+
├── splunk-1.6.3.jar.md5
33+
├── splunk-1.6.3.jar.sha1
34+
├── splunk-1.6.3.pom
35+
├── splunk-1.6.3.pom.md5
36+
└── splunk-1.6.3.pom.sha1
3737

3838
Verify this structure prior to release.

splunk/com/splunk/HttpService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public boolean verify(String s, SSLSession sslSession) {
7373
private String prefix = null;
7474

7575
static Map<String, String> defaultHeader = new HashMap<String, String>() {{
76-
put("User-Agent", "splunk-sdk-java/1.6.2");
76+
put("User-Agent", "splunk-sdk-java/1.6.3");
7777
put("Accept", "*/*");
7878
}};
7979

0 commit comments

Comments
 (0)