Skip to content

Commit 3cf7ec0

Browse files
committed
Bump version to 3.0.1
1 parent 06acba6 commit 3cf7ec0

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,23 @@ Add the following dependency to your pom.xml:
2222
<dependency>
2323
<groupId>org.eu.zajc</groupId>
2424
<artifactId>akiwrapper</artifactId>
25-
<version>3.0.0</version>
25+
<version>3.0.1</version>
2626
</dependency>
2727
```
2828
#### Gradle
2929
Add the following dependency to your build.gradle:
3030
```gradle
31-
implementation group: 'org.eu.zajc', name: 'akiwrapper', version: '3.0.0'
31+
implementation 'org.eu.zajc:akiwrapper:3.0.1'
3232
```
3333

34-
## Usage
34+
#### Gradle Kotlin DSL
35+
Add the following dependency to your build.gradle.kts:
36+
```gradle
37+
implementation("org.eu.zajc:akiwrapper:3.0.1")
38+
```
3539

40+
## Usage
3641
### Starting the game
37-
3842
To access the Akinator API, you'll need an Akiwrapper object. One can be created like so:
3943
```java
4044
Akiwrapper aw = new AkiwrapperBuilder().build();
@@ -51,7 +55,6 @@ Akiwrapper aw = new AkiwrapperBuilder()
5155
(keep in mind that not all language-theme combinations are supported, though all languages support `CHARACTER`)
5256

5357
### The game loop
54-
5558
Akinator sends two types of queries: questions (*"Is your character an X?"*, *"Does your character Y?"*) and guesses
5659
(*"Is this your character?"*). You'll typically want to set up a query-answer loop. Fetch the first query with
5760
```java

example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.eu.zajc</groupId>
77
<artifactId>akiwrapper-example</artifactId>
8-
<version>3.0.0</version>
8+
<version>3.0.1</version>
99

1010
<name>Akiwrapper Example</name>
1111
<description>An example for Akiwrapper, the Java API wrapper for Akinator</description>
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>org.eu.zajc</groupId>
4343
<artifactId>akiwrapper</artifactId>
44-
<version>3.0.0</version>
44+
<version>3.0.1</version>
4545
</dependency>
4646

4747
<!-- Logging Backend -->

pom.xml

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

66
<groupId>org.eu.zajc</groupId>
77
<artifactId>akiwrapper</artifactId>
8-
<version>3.0.0</version>
8+
<version>3.0.1</version>
99

1010
<name>Akiwrapper</name>
1111
<description>A Java API wrapper for Akinator</description>

0 commit comments

Comments
 (0)