Skip to content

Commit 1fe0764

Browse files
committed
v1.2.0
1 parent 79a680f commit 1fe0764

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

ChangeLog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
55

66
## [Unreleased]
77

8+
## [1.2.0] - 2024-01-05
9+
10+
- fixed support for `VST` communication protocol (DE-734, #31)
11+
- fixed support for `VPACK` content type (DE-734, #31)
12+
- updated ArangoDB Java Driver to version `7.4` (DE-734, #31)
13+
- use the shaded variant of ArangoDB Java Driver (DE-734, #31)
14+
815
## [1.1.0] - 2023-11-24
916

1017
- added periodical connections rebalancing (#27)
@@ -16,5 +23,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
1623

1724
- initial release
1825

19-
[unreleased]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.1.0...HEAD
26+
[unreleased]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.2.0...HEAD
27+
[1.2.0]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.1.0...v1.2.0
2028
[1.1.0]: https://github.com/arangodb/kafka-connect-arangodb/compare/v1.0.0...v1.1.0

demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Set package version:
66

77
```shell
8-
export PACKAGE_VERSION=1.1.0
8+
export PACKAGE_VERSION=1.2.0
99
```
1010

1111
Create the Docker network:

pom.xml

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

77
<groupId>com.arangodb</groupId>
88
<artifactId>kafka-connect-arangodb</artifactId>
9-
<version>1.1.0</version>
9+
<version>1.2.0</version>
1010
<packaging>jar</packaging>
1111
<inceptionYear>2023</inceptionYear>
1212

src/test/java/com/arangodb/kafka/ArangoSinkConnectorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ public class ArangoSinkConnectorTest {
88
@Test
99
void version(){
1010
String version = new ArangoSinkConnector().version();
11-
assertThat(version).isEqualTo("1.1.0");
11+
assertThat(version).isEqualTo("1.2.0");
1212
}
1313
}

src/test/java/com/arangodb/kafka/ArangoSinkTaskTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ public class ArangoSinkTaskTest {
88
@Test
99
void version(){
1010
String version = new ArangoSinkTask().version();
11-
assertThat(version).isEqualTo("1.1.0");
11+
assertThat(version).isEqualTo("1.2.0");
1212
}
1313
}

0 commit comments

Comments
 (0)