Skip to content

Commit 3f935e2

Browse files
author
Oliver Hsu
authored
Release Kafka Connect Scalyr Sink version 1.1 (#41)
1 parent 6b896b1 commit 3f935e2

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2.1
66
parameters:
77
scalyr_sink_version: # scalyr_sink_version needs to be updated on every new version release.
88
type: string
9-
default: "1.0"
9+
default: "1.1"
1010

1111
jobs: # a collection of steps
1212
build: # runs not using Workflows must have a `build` job as entry point

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ Features:
88
* Supports custom application log messages using user defined conversion of message fields to Scalyr log event attributes.
99
* Supports Fluentd and Fluent Bit using custom application event mappings.
1010
* Exactly once delivery using the topic, partition, and offset to uniquely identify events and prevent duplicate delivery.
11+
12+
## 1.1
13+
Performance improvements for JSON serialization.

MAINTAINERS.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Maintainers Documentation
2+
3+
## Release checklist
4+
5+
* Please make sure CHANGELOG reflects the new version to be released
6+
(Usually, that's changing the `In Development` items to be reflected under
7+
new version and leaving `In Development` empty)
8+
* Set the new version to be released in pom.xml and config.yml
9+
* Please push a tag using git commands
10+
11+
```bash
12+
git tag -a 1.0 -m "1.0 - Shiny new features and bug fixes"
13+
git push upstream 1.0
14+
```
15+
16+
* Circle CI builds the tag and ships to GitHub Releases
17+
* `scalyr-kafka-connect-scalyr-sink-<version>.zip` is included in the GitHub Releases Downloads

pom.xml

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

55
<groupId>com.scalyr.integrations.kafka</groupId>
66
<artifactId>kafka-connect-scalyr-sink</artifactId>
7-
<version>1.0</version>
7+
<version>1.1</version>
88
<packaging>jar</packaging>
99

1010
<name>kafka-connect-scalyr-sink</name>

0 commit comments

Comments
 (0)