Skip to content

Commit 520842c

Browse files
committed
Prepare release 1.1.0
1 parent c1182a3 commit 520842c

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.1.0] - 2020-10-25
8+
9+
### Added
10+
11+
* [#15](https://github.com/kaklakariada/fritzbox-java-api/pull/15) Added new fields to be compatible with Fritz!OS 7.21. Thanks to [philippn](https://github.com/philippn)!
12+
713
## [1.0.0] - 2019-12-27
814

915
### Breaking change

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# fritzbox-java-api
22

33
[![Java CI](https://github.com/kaklakariada/fritzbox-java-api/workflows/Java%20CI/badge.svg)](https://github.com/kaklakariada/fritzbox-java-api/actions?query=workflow%3A%22Java+CI%22)
4+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.github.kaklakariada%3Afritzbox-java-api&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.github.kaklakariada%3Afritzbox-java-api)
45
[![Download](https://api.bintray.com/packages/kaklakariada/maven/fritzbox-java-api/images/download.svg)](https://bintray.com/kaklakariada/maven/fritzbox-java-api/_latestVersion)
56

67
Java API for managing FritzBox HomeAutomation using [AVM Home Automation HTTP Interface](https://avm.de/fileadmin/user_upload/Global/Service/Schnittstellen/AHA-HTTP-Interface.pdf) inspired by grundid's [fritzbox-java-api](https://github.com/grundid/fritzbox-java-api). This also runs on Android devices (see [Andect](https://github.com/kaklakariada/Andect)).
@@ -20,7 +21,7 @@ repositories {
2021
* Add dependency
2122
```groovy
2223
dependencies {
23-
compile 'com.github.kaklakariada:fritzbox-java-api:1.0.0'
24+
compile 'com.github.kaklakariada:fritzbox-java-api:1.1.0'
2425
}
2526
```
2627

@@ -51,7 +52,7 @@ Install to local maven repository:
5152
bintrayApiKey = <apiKey>
5253
```
5354

54-
2. Increment version number in `build.gradle` and `README.md`, commit and push.
55+
2. Increment version number in `build.gradle` and `README.md`, update [CHANGELOG.md](CHANGELOG.md), commit and push.
5556
3. Run the following command:
5657

5758
```bash

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
group 'com.github.kaklakariada'
14-
version = '1.0.0'
14+
version = '1.1.0'
1515
sourceCompatibility = 1.8
1616

1717
tasks.withType(JavaCompile) {

0 commit comments

Comments
 (0)