Skip to content

Commit 0dc9206

Browse files
Configurable props must have a name (#32)
* Mark the `name` field of configurable props as required * Fix and bump package version --------- Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent e190e39 commit 0dc9206

13 files changed

+2344
-883
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.2</version>
28+
<version>1.0.1</version>
2929
</dependency>
3030
```
3131

build.gradle

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

4848
group = 'com.pipedream'
4949

50-
version = '1.0.0'
50+
version = '1.0.1'
5151

5252
jar {
5353
dependsOn(":generatePomFileForMavenPublication")
@@ -78,7 +78,7 @@ publishing {
7878
maven(MavenPublication) {
7979
groupId = 'com.pipedream'
8080
artifactId = 'pipedream'
81-
version = '1.0.0'
81+
version = '1.0.1'
8282
from components.java
8383
pom {
8484
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
@@ -35,10 +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");
38+
put("User-Agent", "com.pipedream:pipedream/1.0.1");
3939
put("X-Fern-Language", "JAVA");
4040
put("X-Fern-SDK-Name", "com.pipedream.fern:api-sdk");
41-
put("X-Fern-SDK-Version", "0.0.2");
41+
put("X-Fern-SDK-Version", "1.0.1");
4242
}
4343
});
4444
this.headerSuppliers = headerSuppliers;

0 commit comments

Comments
 (0)