From 3a888997b5aa9c5a6138bf4502eb2af69d3332ef Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 23 Sep 2025 19:52:26 +0000 Subject: [PATCH] SDK regeneration --- README.md | 2 +- build.gradle | 4 ++-- src/main/java/com/pipedream/api/core/ClientOptions.java | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8516429..12099c8 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Add the dependency in your `pom.xml` file: com.pipedream pipedream - 1.0.5 + 1.0.6 ``` diff --git a/build.gradle b/build.gradle index e8564b2..21ef800 100644 --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,7 @@ java { group = 'com.pipedream' -version = '1.0.5' +version = '1.0.6' jar { dependsOn(":generatePomFileForMavenPublication") @@ -79,7 +79,7 @@ publishing { maven(MavenPublication) { groupId = 'com.pipedream' artifactId = 'pipedream' - version = '1.0.5' + version = '1.0.6' 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 1dd75f9..8e17e45 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.5"); + put("User-Agent", "com.pipedream:pipedream/1.0.6"); put("X-Fern-Language", "JAVA"); put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk"); - put("X-Fern-SDK-Version", "1.0.5"); + put("X-Fern-SDK-Version", "1.0.6"); } }); this.headerSuppliers = headerSuppliers;