Skip to content

Commit 44cbd7e

Browse files
author
Stephen Powis
committed
Prep for release, update CHANGELOG, POM, and update dependencies
1 parent 83cc6c4 commit 44cbd7e

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
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.1 (04/23/2019)
6+
7+
### Bugfix
8+
- Updated ConnectorPluginConfigValidationResults classes to be publicly scoped. Thanks [tchiotludo](https://github.com/tchiotludo)!
9+
10+
### Internal Dependency Updates
11+
- Updated Google Guava from 27.0.1-JRE to 27.1-JRE
12+
- Updated HttpComponents from 4.5.7 to 4.5.8
13+
514
## 2.0.0 (04/05/2019)
615

716
### Bugfix / Breaking Change

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>2.0.0</version>
15+
<version>2.0.1</version>
1616
</dependency>
1717
```
1818

pom.xml

Lines changed: 6 additions & 7 deletions
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>2.0.0</version>
9+
<version>2.0.1</version>
1010
<packaging>jar</packaging>
1111

1212
<!-- Require Maven 3.3.9 -->
@@ -47,10 +47,10 @@
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4848

4949
<!-- guava version -->
50-
<guava.version>27.0.1-jre</guava.version>
50+
<guava.version>27.1-jre</guava.version>
5151

5252
<!-- Http Components version -->
53-
<http-components.version>4.5.7</http-components.version>
53+
<http-components.version>4.5.8</http-components.version>
5454

5555
<!-- Jackson version -->
5656
<jackson.version>2.9.8</jackson.version>
@@ -64,7 +64,7 @@
6464
<checkstyle.version>8.19</checkstyle.version>
6565

6666
<!-- Log4J Version -->
67-
<log4j2.version>2.11.1</log4j2.version>
67+
<log4j2.version>2.11.2</log4j2.version>
6868

6969
<!-- test toggling -->
7070
<skipTests>false</skipTests>
@@ -133,11 +133,10 @@
133133
<dependency>
134134
<groupId>org.mockito</groupId>
135135
<artifactId>mockito-core</artifactId>
136-
<version>2.23.4</version>
136+
<version>2.27.0</version>
137137
<scope>test</scope>
138138
</dependency>
139139

140-
141140
<!-- Data providers on tests -->
142141
<dependency>
143142
<groupId>com.tngtech.java</groupId>
@@ -166,7 +165,7 @@
166165
<dependency>
167166
<groupId>org.eclipse.jetty</groupId>
168167
<artifactId>jetty-server</artifactId>
169-
<version>9.4.14.v20181114</version>
168+
<version>9.4.17.v20190418</version>
170169
<scope>test</scope>
171170
</dependency>
172171
</dependencies>

0 commit comments

Comments
 (0)