Skip to content

Commit 2f1a15a

Browse files
committed
Bump version
1 parent 1e89963 commit 2f1a15a

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
"originGitCommit": "acb023a4922ccfc783ab727b12cfa0a2b6cea9dc",
1414
"originGitCommitIsDirty": true,
1515
"invokedBy": "manual",
16-
"sdkVersion": "1.2.1"
16+
"sdkVersion": "2.0.0"
1717
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Add the dependency in your `build.gradle` file:
3030

3131
```groovy
3232
dependencies {
33-
implementation 'com.pipedream:pipedream:1.2.1'
33+
implementation 'com.pipedream:pipedream:2.0.0'
3434
}
3535
```
3636

@@ -42,7 +42,7 @@ Add the dependency in your `pom.xml` file:
4242
<dependency>
4343
<groupId>com.pipedream</groupId>
4444
<artifactId>pipedream</artifactId>
45-
<version>1.2.1</version>
45+
<version>2.0.0</version>
4646
</dependency>
4747
```
4848

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ java {
4848

4949
group = 'com.pipedream'
5050

51-
version = '1.2.1'
51+
version = '2.0.0'
5252

5353
jar {
5454
dependsOn(":generatePomFileForMavenPublication")
@@ -79,7 +79,7 @@ publishing {
7979
maven(MavenPublication) {
8080
groupId = 'com.pipedream'
8181
artifactId = 'pipedream'
82-
version = '1.2.1'
82+
version = '2.0.0'
8383
from components.java
8484
pom {
8585
name = 'pipedream'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ private ClientOptions(
4141
this.headers.putAll(headers);
4242
this.headers.putAll(new HashMap<String, String>() {
4343
{
44-
put("User-Agent", "com.pipedream:pipedream/1.2.1");
44+
put("User-Agent", "com.pipedream:pipedream/2.0.0");
4545
put("X-Fern-Language", "JAVA");
4646
put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk");
47-
put("X-Fern-SDK-Version", "1.2.1");
47+
put("X-Fern-SDK-Version", "2.0.0");
4848
}
4949
});
5050
this.headerSuppliers = headerSuppliers;

0 commit comments

Comments
 (0)