Skip to content

Commit

Permalink
0.17.0
Browse files Browse the repository at this point in the history
Adds support for event publishing GZIP compression [#369](#369)
  • Loading branch information
adyach authored and dehora committed Sep 28, 2022
1 parent 9ae44e5 commit 8b10b8d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### Changes

### 0.17.0

- Adds support for event publishing GZIP compression [#369](https://github.com/dehora/nakadi-java/pull/369)

### 0.16.0

This promotes 0.15.0 to use a new build and publishing setup.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
**Status**

- Build: [![CircleCI](https://circleci.com/gh/dehora/nakadi-java.svg?style=svg)](https://circleci.com/gh/dehora/nakadi-java)
- Source Release: [0.16.0](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.16.0)
- Source Release: [0.17.0](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.17.0)
- Contact: [maintainers](https://github.com/zalando-incubator/nakadi-java/blob/master/MAINTAINERS)


Expand Down Expand Up @@ -727,7 +727,7 @@ and add the project declaration to `pom.xml`:
<dependency>
<groupId>net.dehora.nakadi</groupId>
<artifactId>nakadi-java-client</artifactId>
<version>0.16.0</version>
<version>0.17.0</version>
</dependency>
```
### Gradle
Expand All @@ -754,13 +754,13 @@ and add the project to the `dependencies` block in `build.gradle`:

```groovy
dependencies {
implementation 'net.dehora.nakadi:nakadi-java-client:0.16.0'
implementation 'net.dehora.nakadi:nakadi-java-client:0.17.0'
}
```

```kotlin
dependencies {
implementation("net.dehora.nakadi:nakadi-java-client:0.16.0")
implementation("net.dehora.nakadi:nakadi-java-client:0.17.0")
}
```

Expand All @@ -775,7 +775,7 @@ resolvers += Opts.resolver.sonatypeSnapshots
and add the project to `libraryDependencies` in `build.sbt`:

```scala
libraryDependencies += "net.dehora.nakadi" % "nakadi-java-client" % "0.16.0"
libraryDependencies += "net.dehora.nakadi" % "nakadi-java-client" % "0.17.0"
```


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# suppress inspection "UnusedProperty" for whole file
org.gradle.daemon=true
version=0.16.0
version=0.17.0
group=net.dehora.nakadi
# one per line to keep diffs clean
modules=\
Expand Down
2 changes: 1 addition & 1 deletion nakadi-java-client/src/main/java/nakadi/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

public class Version {

public static final String VERSION = "0.16.0";
public static final String VERSION = "0.17.0";
}

0 comments on commit 8b10b8d

Please sign in to comment.