Skip to content

Commit 86144d5

Browse files
committed
Prepare release
1 parent 7478829 commit 86144d5

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [1.6.0] - unreleased
7+
## [1.7.0] - unreleased
8+
9+
## [1.6.0] - 2021-12-04
810

911
### Added
1012

1113
* [#39](https://github.com/kaklakariada/fritzbox-java-api/pull/39) Add new command "getdeviceinfo" (thanks to [@odin568](https://github.com/odin568))
12-
* [#46](https://github.com/kaklakariada/fritzbox-java-api/pull/46) https://github.com/kaklakariada/fritzbox-java-api/pull/46 (thanks to [TDesjardins](https://github.com/TDesjardins))
14+
* [#46](https://github.com/kaklakariada/fritzbox-java-api/pull/46) Add additional attributes to group (thanks to [TDesjardins](https://github.com/TDesjardins))
1315
* [#47](https://github.com/kaklakariada/fritzbox-java-api/pull/47) Add hkr attribute supported by FritzOS 7.29 (thanks to [philippn](https://github.com/philippn))
1416
* [#38](https://github.com/kaklakariada/fritzbox-java-api/pull/38) Add commands to set status for hkr (tsoll) and for blind (open, close etc.) (thanks to [JunkerMartin](https://github.com/JunkerMartin))
1517

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ See [CHANGELOG.md](CHANGELOG.md).
2222

2323
## Usage
2424

25+
### Gradle
26+
2527
* Add Maven Central maven repository:
2628

2729
```groovy
@@ -34,10 +36,20 @@ See [CHANGELOG.md](CHANGELOG.md).
3436
3537
```groovy
3638
dependencies {
37-
compile 'com.github.kaklakariada:fritzbox-java-api:1.5.0'
39+
compile 'com.github.kaklakariada:fritzbox-java-api:1.6.0'
3840
}
3941
```
4042
43+
### Maven
44+
45+
```xml
46+
<dependency>
47+
<groupId>com.github.kaklakariada</groupId>
48+
<artifactId>fritzbox-java-api</artifactId>
49+
<version>1.6.0</version>
50+
</dependency>
51+
```
52+
4153
### Run sample program
4254

4355
1. Copy file `application.properties.template` to `application.properties` and enter settings for your device.

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id "maven-publish"
55
id "jacoco"
66
id "com.github.hierynomus.license" version "0.16.1"
7-
id "org.sonarqube" version "3.3"
7+
id "org.sonarqube" version "3.4.0.2513"
88
id "io.codearte.nexus-staging" version "0.30.0"
99
id "com.github.ben-manes.versions" version "0.42.0"
1010
}
@@ -14,7 +14,7 @@ repositories {
1414
}
1515

1616
group 'com.github.kaklakariada'
17-
version = '1.5.0'
17+
version = '1.6.0'
1818

1919
java {
2020
toolchain {
@@ -42,15 +42,15 @@ test {
4242
}
4343

4444
dependencies {
45-
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
45+
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
4646
implementation 'com.subshell.simpleframework:simple-xml:2.9.0'
4747
implementation 'org.slf4j:slf4j-api:1.7.36'
4848

4949
runtimeOnly 'ch.qos.logback:logback-classic:1.2.11'
5050

5151
testImplementation 'junit:junit:4.13.2'
52-
testImplementation 'org.mockito:mockito-core:4.5.1'
53-
testImplementation 'org.assertj:assertj-core:3.22.0'
52+
testImplementation 'org.mockito:mockito-core:4.6.1'
53+
testImplementation 'org.assertj:assertj-core:3.23.1'
5454
}
5555

5656
license {

0 commit comments

Comments
 (0)