Skip to content

Commit

Permalink
Merge pull request #75 from mmolimar/develop
Browse files Browse the repository at this point in the history
Release version 1.2.0
  • Loading branch information
mmolimar committed Sep 15, 2020
2 parents 7ec9293 + 1655831 commit 98c5641
Show file tree
Hide file tree
Showing 36 changed files with 2,658 additions and 506 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM confluentinc/cp-kafka-connect-base:5.5.0
FROM confluentinc/cp-kafka-connect-base:5.5.1

ARG PROJECT_VERSION
ENV CONNECT_PLUGIN_PATH="/usr/share/java,/usr/share/confluent-hub-components"
Expand Down
1 change: 1 addition & 0 deletions config/kafka-connect-fs.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ policy.class=com.github.mmolimar.kafka.connect.fs.policy.SimplePolicy
policy.recursive=true
policy.regexp=^.*\.txt$
policy.batch_size=0
policy.cleanup=none
file_reader.class=com.github.mmolimar.kafka.connect.fs.file.reader.TextFileReader
file_reader.batch_size=0
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
cp-zookeeper:
image: confluentinc/cp-zookeeper:5.5.0
image: confluentinc/cp-zookeeper:5.5.1
hostname: zookeeper
container_name: zookeeper
ports:
Expand All @@ -11,7 +11,7 @@ services:
ZOOKEEPER_TICK_TIME: 2000

cp-kafka:
image: confluentinc/cp-kafka:5.5.0
image: confluentinc/cp-kafka:5.5.1
hostname: kafka
container_name: kafka
depends_on:
Expand All @@ -32,7 +32,7 @@ services:
CONFLUENT_METRICS_ENABLE: 'false'

cp-schema-registry:
image: confluentinc/cp-schema-registry:5.5.0
image: confluentinc/cp-schema-registry:5.5.1
hostname: schema-registry
container_name: schema-registry
depends_on:
Expand All @@ -45,7 +45,7 @@ services:
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'

connect-fs:
image: mmolimar/kafka-connect-fs:1.1.0
image: mmolimar/kafka-connect-fs:1.2.0
container_name: connect
depends_on:
- cp-kafka
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1'
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.1'
release = '1.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 98c5641

Please sign in to comment.