Skip to content

Commit 84ac6c0

Browse files
author
Stephen Powis
committed
Prep for 2.0.0 release
1 parent da1cbba commit 84ac6c0

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
The format is based on [Keep a Changelog](http://keepachangelog.com/)
33
and this project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## 2.0.0 (04/05/2019)
6+
7+
### Bugfix / Breaking Change
8+
9+
**PR**: [Fix connector tasks & plugins query](https://github.com/SourceLabOrg/kafka-connect-client/pull/19)
10+
11+
[tchiotludo](https://github.com/tchiotludo) discovered and fixed a bug in the `KafkaConnectClient::getConnectorPlugins()` and
12+
`KafkaConnectClient::getConnectorTasks()` client methods.
13+
14+
Previous to this version these methods incorrectly returned a
15+
`Collection<Map<>>` instead of `Collection<ConnectorPlugin>` and `Collection<Task>` respectively.
16+
17+
This release fixes these two methods to return the correct types as defined by their signatures. Any users of this library who were interacting with this incorrect return type will need to update their code for this release.
18+
519
## 1.3.0 (02/06/2019)
620

721
### New Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This client library is released on Maven Central. Add a new dependency to your
1212
<dependency>
1313
<groupId>org.sourcelab</groupId>
1414
<artifactId>kafka-connect-client</artifactId>
15-
<version>1.3.0</version>
15+
<version>2.0.0</version>
1616
</dependency>
1717
```
1818

pom.xml

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

77
<groupId>org.sourcelab</groupId>
88
<artifactId>kafka-connect-client</artifactId>
9-
<version>1.3.0</version>
9+
<version>2.0.0</version>
1010
<packaging>jar</packaging>
1111

1212
<!-- Require Maven 3.3.9 -->

0 commit comments

Comments
 (0)