Skip to content

Commit 35cbbb7

Browse files
🌿 Fern Regeneration -- August 1, 2025 (#25)
SDK regeneration Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 10caca9 commit 35cbbb7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Add the dependency in your `pom.xml` file:
2525
<dependency>
2626
<groupId>com.pipedream</groupId>
2727
<artifactId>pipedream</artifactId>
28-
<version>0.0.256</version>
28+
<version>0.0.2</version>
2929
</dependency>
3030
```
3131

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ dependencies {
1919
api 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.2'
2020
api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
2121
api 'org.apache.commons:commons-text:1.13.1'
22-
api 'org.immutables:value:2.10.1'
2322
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
2423
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
2524
}
@@ -48,7 +47,7 @@ java {
4847

4948
group = 'com.pipedream'
5049

51-
version = '0.0.256'
50+
version = '0.0.2'
5251

5352
jar {
5453
dependsOn(":generatePomFileForMavenPublication")
@@ -79,7 +78,7 @@ publishing {
7978
maven(MavenPublication) {
8079
groupId = 'com.pipedream'
8180
artifactId = 'pipedream'
82-
version = '0.0.256'
81+
version = '0.0.2'
8382
from components.java
8483
pom {
8584
name = 'pipedream'

src/main/java/com/pipedream/api/core/ClientOptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ private ClientOptions(
3535
this.headers.putAll(headers);
3636
this.headers.putAll(new HashMap<String, String>() {
3737
{
38+
put("User-Agent", "com.pipedream:pipedream/0.0.2");
3839
put("X-Fern-Language", "JAVA");
3940
put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk");
40-
put("X-Fern-SDK-Version", "0.0.256");
41+
put("X-Fern-SDK-Version", "0.0.2");
4142
}
4243
});
4344
this.headerSuppliers = headerSuppliers;

0 commit comments

Comments
 (0)