diff --git a/README.md b/README.md
index 69021da..cfa97c3 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ Add the dependency in your `build.gradle` file:
```groovy
dependencies {
- implementation 'com.pipedream:pipedream:1.1.12'
+ implementation 'com.pipedream:pipedream:1.1.13'
}
```
@@ -40,7 +40,7 @@ Add the dependency in your `pom.xml` file:
com.pipedream
pipedream
- 1.1.12
+ 1.1.13
```
diff --git a/build.gradle b/build.gradle
index 0a47fe9..566b8cf 100644
--- a/build.gradle
+++ b/build.gradle
@@ -49,7 +49,7 @@ java {
group = 'com.pipedream'
-version = '1.1.12'
+version = '1.1.13'
jar {
dependsOn(":generatePomFileForMavenPublication")
@@ -80,7 +80,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.pipedream'
artifactId = 'pipedream'
- version = '1.1.12'
+ version = '1.1.13'
from components.java
pom {
name = 'pipedream'
diff --git a/src/main/java/com/pipedream/api/core/ClientOptions.java b/src/main/java/com/pipedream/api/core/ClientOptions.java
index abda75d..f9585df 100644
--- a/src/main/java/com/pipedream/api/core/ClientOptions.java
+++ b/src/main/java/com/pipedream/api/core/ClientOptions.java
@@ -35,10 +35,10 @@ private ClientOptions(
this.headers.putAll(headers);
this.headers.putAll(new HashMap() {
{
- put("User-Agent", "com.pipedream:pipedream/1.1.12");
+ put("User-Agent", "com.pipedream:pipedream/1.1.13");
put("X-Fern-Language", "JAVA");
put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk");
- put("X-Fern-SDK-Version", "1.1.12");
+ put("X-Fern-SDK-Version", "1.1.13");
}
});
this.headerSuppliers = headerSuppliers;