diff --git a/README.md b/README.md
index c27363a..94437d1 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ Add the dependency in your `pom.xml` file:
com.anduril
lattice-sdk
- 3.1.0
+ 3.2.0
```
diff --git a/build.gradle b/build.gradle
index a60fc51..689c6bb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -48,7 +48,7 @@ java {
group = 'com.anduril'
-version = '3.1.0'
+version = '3.2.0'
jar {
dependsOn(":generatePomFileForMavenPublication")
@@ -79,21 +79,21 @@ publishing {
maven(MavenPublication) {
groupId = 'com.anduril'
artifactId = 'lattice-sdk'
- version = '3.1.0'
+ version = '3.2.0'
from components.java
pom {
- name = 'Anduril Industries, Inc.'
- description = 'Anduril Lattice SDK for Java'
- url = 'https://developer.anduril.com'
+ name = 'anduril'
+ description = 'The official SDK of anduril'
+ url = 'https://buildwithfern.com'
licenses {
license {
- name = 'Anduril Lattice Software Development Kit License Agreement'
+ name = 'Custom License (LICENSE)'
}
}
developers {
developer {
- name = 'Anduril Industries, Inc.'
- email = 'lattice-developers@anduril.com'
+ name = 'anduril'
+ email = 'developers@anduril.com'
}
}
scm {
diff --git a/src/main/java/com/anduril/core/ClientOptions.java b/src/main/java/com/anduril/core/ClientOptions.java
index 6ca1d44..f1115f1 100644
--- a/src/main/java/com/anduril/core/ClientOptions.java
+++ b/src/main/java/com/anduril/core/ClientOptions.java
@@ -32,10 +32,10 @@ private ClientOptions(
this.headers.putAll(headers);
this.headers.putAll(new HashMap() {
{
- put("User-Agent", "com.anduril:lattice-sdk/3.1.0");
+ put("User-Agent", "com.anduril:lattice-sdk/3.2.0");
put("X-Fern-Language", "JAVA");
put("X-Fern-SDK-Name", "com.anduril.fern:api-sdk");
- put("X-Fern-SDK-Version", "3.1.0");
+ put("X-Fern-SDK-Version", "3.2.0");
}
});
this.headerSuppliers = headerSuppliers;