From 798397fc54ce3d8f9f4da3d3cc2610ea2d815197 Mon Sep 17 00:00:00 2001
From: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
Date: Fri, 29 Aug 2025 16:38:26 +0000
Subject: [PATCH] SDK regeneration
---
README.md | 4 ++--
build.gradle | 4 ++--
src/main/java/com/pipedream/api/core/ClientOptions.java | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index a52dbc3..012abc9 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPipedreamHQ%2Fpipedream-sdk-java)
[](https://central.sonatype.com/artifact/com.pipedream/pipedream)
-The Pipedream Java library provides convenient access to the Pipedream API from Java.
+The Pipedream Java library provides convenient access to the Pipedream APIs from Java.
## Installation
@@ -25,7 +25,7 @@ Add the dependency in your `pom.xml` file:
com.pipedream
pipedream
- 1.0.2
+ 1.0.3
```
diff --git a/build.gradle b/build.gradle
index 8c7bf5a..b2aff62 100644
--- a/build.gradle
+++ b/build.gradle
@@ -48,7 +48,7 @@ java {
group = 'com.pipedream'
-version = '1.0.2'
+version = '1.0.3'
jar {
dependsOn(":generatePomFileForMavenPublication")
@@ -79,7 +79,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.pipedream'
artifactId = 'pipedream'
- version = '1.0.2'
+ version = '1.0.3'
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 71fa012..390ad5a 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.0.2");
+ put("User-Agent", "com.pipedream:pipedream/1.0.3");
put("X-Fern-Language", "JAVA");
put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk");
- put("X-Fern-SDK-Version", "1.0.2");
+ put("X-Fern-SDK-Version", "1.0.3");
}
});
this.headerSuppliers = headerSuppliers;