Skip to content

Commit 637aa02

Browse files
authored
Merge pull request #345 from hivemq/develop
Release 1.1.3
2 parents e0c677f + d2b4aeb commit 637aa02

File tree

63 files changed

+2458
-854
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2458
-854
lines changed

Diff for: .gitignore

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
.gradle
2-
/out/
3-
/build/
4-
.DS_Store
2+
out/
3+
build/
4+
55
*.iml
66
.idea/*
77
!.idea/codeStyles
88
!.idea/inspectionProfiles
9+
10+
.DS_Store
11+
.java-version
12+
credentials.gradle
913
bintray.gradle

Diff for: .travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ stages:
1111
- name: release
1212
if: branch = master && type != pull_request
1313

14+
install: skip
1415
script: ./gradlew check javadoc
1516

1617
jobs:
1718
include:
1819
- stage: release
19-
install: true
20-
script: ./gradlew bintrayUpload -x test
20+
install: skip
21+
script: ./gradlew bintrayUpload githubRelease
22+
jdk: oraclejdk8
2123

2224
addons:
2325
apt:

Diff for: README.md

+18-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# HiveMQ MQTT Client
1+
<p align="center">
2+
<img src="https://www.hivemq.com/img/svg/hivemq-mqtt-client.svg" width="500">
3+
</p>
24

3-
<img src="https://www.hivemq.com/img/svg/hivemq-mqtt-client.svg" width="500">
5+
# HiveMQ MQTT Client
46

57
[![Build Status](https://travis-ci.org/hivemq/hivemq-mqtt-client.svg?branch=develop)](https://travis-ci.org/hivemq/hivemq-mqtt-client)
68
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.hivemq/hivemq-mqtt-client/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.hivemq/hivemq-mqtt-client)
@@ -9,9 +11,14 @@
911
MQTT 5.0 and 3.1.1 compatible and feature-rich high-performance Java client library with different API flavours and
1012
backpressure support.
1113

12-
## Documentation
13-
14-
A detailed documentation can be found [here](https://hivemq.github.io/hivemq-mqtt-client)
14+
- Documentation: https://hivemq.github.io/hivemq-mqtt-client/
15+
- Community forum: https://community.hivemq.com/
16+
- HiveMQ website: https://www.hivemq.com/
17+
- Contribution guidelines: [CONTRIBUTING.md](CONTRIBUTING.md)
18+
- License: [LICENSE](LICENSE)
19+
- MQTT resources:
20+
- [MQTT Essentials](https://www.hivemq.com/mqtt-essentials/)
21+
- [MQTT 5 Essentials](https://www.hivemq.com/mqtt-5/)
1522

1623
## Features
1724

@@ -47,7 +54,7 @@ If you use Gradle, just include the following inside your `build.gradle` file.
4754

4855
```groovy
4956
dependencies {
50-
compile group: 'com.hivemq', name: 'hivemq-mqtt-client', version: '1.1.2'
57+
compile group: 'com.hivemq', name: 'hivemq-mqtt-client', version: '1.1.3'
5158
}
5259
```
5360

@@ -69,7 +76,7 @@ NOTE: You have to set the compiler version to `1.8` or higher.
6976
<dependency>
7077
<groupId>com.hivemq</groupId>
7178
<artifactId>hivemq-mqtt-client</artifactId>
72-
<version>1.1.2</version>
79+
<version>1.1.3</version>
7380
</dependency>
7481
</dependencies>
7582
...
@@ -86,7 +93,7 @@ To use the shaded version just append `-shaded` to the artifact name.
8693

8794
```groovy
8895
dependencies {
89-
compile group: 'com.hivemq', name: 'hivemq-mqtt-client-shaded', version: '1.1.2'
96+
compile group: 'com.hivemq', name: 'hivemq-mqtt-client-shaded', version: '1.1.3'
9097
}
9198
```
9299

@@ -99,7 +106,7 @@ dependencies {
99106
<dependency>
100107
<groupId>com.hivemq</groupId>
101108
<artifactId>hivemq-mqtt-client-shaded</artifactId>
102-
<version>1.1.2</version>
109+
<version>1.1.3</version>
103110
</dependency>
104111
</dependencies>
105112
...
@@ -591,8 +598,8 @@ classes.
591598

592599
## Contributing
593600

594-
See [CONTRIBUTING.md](CONTRIBUTING.md)
601+
If you want to contribute to HiveMQ MQTT Client, see the [contribution guidelines](CONTRIBUTING.md).
595602

596603
## License
597604

598-
See [LICENSE](LICENSE)
605+
HiveMQ MQTT Client is licensed under the `APACHE LICENSE, VERSION 2.0`. A copy of the license can be found [here](LICENSE).

0 commit comments

Comments
 (0)