diff --git a/CHANGELOG.md b/CHANGELOG.md
index 524833fd..9de98f5f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Splunk Enterprise SDK for Java Changelog
+## Version 1.9.2
+
+### New Features and APIs
+* Added feature that allows to update ACL properties of an entity (GitHub PR [#196](https://github.com/splunk/splunk-sdk-java/pull/196))
+
+### Minor Changes
+* Added null check for child to handle error when no value is passed for a parameter in modular-inputs (Ref issue [#198](https://github.com/splunk/splunk-sdk-java/issues/198) & GitHub PR [#199](https://github.com/splunk/splunk-sdk-java/pull/199))
+
## Version 1.9.1
### New Features and APIs
diff --git a/README.md b/README.md
index 72b778d5..f237d7ea 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
[](https://github.com/splunk/splunk-sdk-java/actions/workflows/test.yml)
# The Splunk Software Development Kit for Java
-#### Version 1.9.1
+#### Version 1.9.2
The Splunk Software Development Kit (SDK) for Java contains library code and
examples designed to enable developers to build applications using Splunk.
@@ -75,7 +75,7 @@ To add the Splunk SDK for Java `.JAR` file as a dependency:
com.splunk
splunk
- 1.9.1
+ 1.9.2
```
diff --git a/deploy b/deploy
index 26bce595..f30b59ad 100755
--- a/deploy
+++ b/deploy
@@ -2,7 +2,7 @@
declare -r scriptDirectory="$(dirname $(readlink -e $0))"
declare -r scriptName="$(basename $0)"
-declare -r version="1.9.1"
+declare -r version="1.9.2"
if [[ $# -ne 1 ]]; then
echo 1>&2 "Usage: ${scriptName} {local|staging||production}"
diff --git a/deploy.md b/deploy.md
index eab0df26..1fb9e68d 100644
--- a/deploy.md
+++ b/deploy.md
@@ -9,8 +9,8 @@ deploy \
##DESCRIPTION
-Deploy transmits **target/splunk-1.9.1.jar**, **target/splunk-1.9.1-javadoc.jar**, and
-**target/splunk-1.9.1-sources.jar** to the **local**, **staging**, or **production**
+Deploy transmits **target/splunk-1.9.2.jar**, **target/splunk-1.9.2-javadoc.jar**, and
+**target/splunk-1.9.2-sources.jar** to the **local**, **staging**, or **production**
maven repository. Repository names are mapped to locations as follows.
| repository-name | location |
@@ -21,18 +21,18 @@ maven repository. Repository names are mapped to locations as follows.
After deployment you should find this tree structure at the location of your repository
- com/splunk/splunk/1.9.1/
- ├── splunk-1.9.1-javadoc.jar
- ├── splunk-1.9.1-javadoc.jar.md5
- ├── splunk-1.9.1-javadoc.jar.sha1
- ├── splunk-1.9.1-sources.jar
- ├── splunk-1.9.1-sources.jar.md5
- ├── splunk-1.9.1-sources.jar.sha1
- ├── splunk-1.9.1.jar
- ├── splunk-1.9.1.jar.md5
- ├── splunk-1.9.1.jar.sha1
- ├── splunk-1.9.1.pom
- ├── splunk-1.9.1.pom.md5
- └── splunk-1.9.1.pom.sha1
+ com/splunk/splunk/1.9.2/
+ ├── splunk-1.9.2-javadoc.jar
+ ├── splunk-1.9.2-javadoc.jar.md5
+ ├── splunk-1.9.2-javadoc.jar.sha1
+ ├── splunk-1.9.2-sources.jar
+ ├── splunk-1.9.2-sources.jar.md5
+ ├── splunk-1.9.2-sources.jar.sha1
+ ├── splunk-1.9.2.jar
+ ├── splunk-1.9.2.jar.md5
+ ├── splunk-1.9.2.jar.sha1
+ ├── splunk-1.9.2.pom
+ ├── splunk-1.9.2.pom.md5
+ └── splunk-1.9.2.pom.sha1
Verify this structure prior to release.
diff --git a/examples/pom.xml b/examples/pom.xml
index 1573e401..0a103858 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -37,7 +37,7 @@
com.splunk
splunk
- 1.9.1
+ 1.9.2
provided
diff --git a/pom.xml b/pom.xml
index 827b8db6..7518555a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
4.0.0
- 1.9.1
+ 1.9.2
true
UTF-8
8
diff --git a/splunk/pom.xml b/splunk/pom.xml
index 186d8eda..922cdab9 100644
--- a/splunk/pom.xml
+++ b/splunk/pom.xml
@@ -5,7 +5,7 @@
4.0.0
splunk
- 1.9.1
+ 1.9.2
splunk-sdk-java
com.splunk
diff --git a/splunk/src/main/java/com/splunk/HttpService.java b/splunk/src/main/java/com/splunk/HttpService.java
index ece901ca..d95f3d6e 100644
--- a/splunk/src/main/java/com/splunk/HttpService.java
+++ b/splunk/src/main/java/com/splunk/HttpService.java
@@ -89,7 +89,7 @@ public boolean verify(String s, SSLSession sslSession) {
private String prefix = null;
static Map defaultHeader = new HashMap() {{
- put("User-Agent", "splunk-sdk-java/1.9.1");
+ put("User-Agent", "splunk-sdk-java/1.9.2");
put("Accept", "*/*");
}};