Skip to content

Commit

Permalink
0.2.1 (#10)
Browse files Browse the repository at this point in the history
* Fix Version and Release
* Fix Version in changelog.md
  • Loading branch information
BolZer authored Sep 5, 2023
1 parent 0277006 commit af4ba4e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

**2023-09-05 - Version 0.2.1**
- Fix Release

**2023-09-05 - Version 0.2.0**
- Added Attachment Resource with Fetch-Methods.
- Added more dedicated ListQueryRequest Objects for different Endpoints / Fetch-Methods
Expand Down
4 changes: 2 additions & 2 deletions easybill-java-sdk/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import java.net.URI

version = "0.2.0"
version = "0.2.1"

java {
withJavadocJar()
Expand Down Expand Up @@ -51,7 +51,7 @@ publishing {
create<MavenPublication>("maven") {
groupId = "io.github.bolzer"
artifactId = "easybill-java-sdk"
version = "0.2.0"
version = "0.2.1"

from(components["java"])

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public final class Client {

@NonNull
public static final String USER_AGENT = "easybill-JAVA-REST-SDK-0.2.0";
public static final String USER_AGENT = "easybill-JAVA-REST-SDK-0.2.1";

@NonNull
@SuppressFBWarnings
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# easybill-java-sdk
[![Generic badge](https://img.shields.io/badge/Version-0.2.0-important.svg)]()
[![Generic badge](https://img.shields.io/badge/Version-0.2.1-important.svg)]()
[![Generic badge](https://img.shields.io/badge/JDK-17-important.svg)]()


Expand All @@ -14,15 +14,15 @@ This library is available on [Maven Central](https://central.sonatype.com/artifa

#### Kotlin DSL
```
implementation("io.github.bolzer:easybill-java-sdk:0.2.0")
implementation("io.github.bolzer:easybill-java-sdk:0.2.1")
```

### Maven
```
<dependency>
<groupId>io.github.bolzer</groupId>
<artifactId>easybill-java-sdk</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
```

Expand Down

0 comments on commit af4ba4e

Please sign in to comment.