Skip to content

Commit 5b3cd28

Browse files
committed
Updated on 2025-09-24 14:23:17. Version: 3.0.1
1 parent 04a24f8 commit 5b3cd28

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 3.0.1 [September 24, 2025]
2+
3+
- Accidentally had a hard-coded 2.x version in the user agent string for v3.0.0
4+
15
### 3.0.0 [September 24, 2025]
26

37
- All our API clients are now 100% end-to-end tested against our real server.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Add this dependency to your project's POM:
4242
<dependency>
4343
<groupId>com.docspring</groupId>
4444
<artifactId>DocSpring</artifactId>
45-
<version>3.0.0</version>
45+
<version>3.0.1</version>
4646
<scope>compile</scope>
4747
</dependency>
4848
```
@@ -58,7 +58,7 @@ Add this dependency to your project's build file:
5858
}
5959
6060
dependencies {
61-
implementation "com.docspring:DocSpring:3.0.0"
61+
implementation "com.docspring:DocSpring:3.0.1"
6262
}
6363
```
6464

@@ -72,7 +72,7 @@ mvn clean package
7272

7373
Then manually install the following JARs:
7474

75-
- `target/DocSpring-3.0.0.jar`
75+
- `target/DocSpring-3.0.1.jar`
7676
- `target/lib/*.jar`
7777

7878
## Usage

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'com.diffplug.spotless'
44

55
group = 'com.docspring'
6-
version = '3.0.0'
6+
version = '3.0.1'
77

88
buildscript {
99
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.docspring",
44
name := "DocSpring",
5-
version := "3.0.0",
5+
version := "3.0.1",
66
scalaVersion := "2.11.12",
77
scalacOptions ++= Seq("-feature"),
88
Compile / javacOptions ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>DocSpring</artifactId>
66
<packaging>jar</packaging>
77
<name>DocSpring</name>
8-
<version>3.0.0</version>
8+
<version>3.0.1</version>
99
<url>https://github.com/DocSpring/docspring-java</url>
1010
<description>Java API client for the DocSpring PDF generation service</description>
1111
<scm>

src/main/java/com/docspring/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public ApiClient(Map<String, Authentication> authMap) {
139139
this.dateFormat = new RFC3339DateFormat();
140140

141141
// Set default User-Agent.
142-
setUserAgent("docspring-java-3.0.0");
142+
setUserAgent("docspring-java-3.0.1");
143143

144144
// Setup authentications (key: authentication name, value: authentication).
145145
authentications = new HashMap<>();

src/main/java/com/docspring/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.16.0-DOCSPRING")
2121
public class Configuration {
22-
public static final String VERSION = "3.0.0";
22+
public static final String VERSION = "3.0.1";
2323

2424
private static final AtomicReference<ApiClient> defaultApiClient = new AtomicReference<>();
2525
private static volatile Supplier<ApiClient> apiClientFactory = ApiClient::new;

0 commit comments

Comments
 (0)