Skip to content

Commit

Permalink
0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dehora committed Nov 29, 2016
1 parent 8689acc commit b071652
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.6.1

- Allow blocking access to streams

### 0.6.0

- Reject stream retry delays that are less than 1s [#83](https://github.com/zalando-incubator/nakadi-java/issues/83)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

- Build: [![CircleCI](https://circleci.com/gh/zalando-incubator/nakadi-java.svg?style=svg)](https://circleci.com/gh/zalando-incubator/nakadi-java)
- Release Download: [ ![Download](https://api.bintray.com/packages/dehora/maven/nakadi-java-client/images/download.svg) ](https://bintray.com/dehora/maven/nakadi-java-client/_latestVersion)
- Source Release: [0.6.0](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.6.0)
- Source Release: [0.6.1](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.6.1)
- Contact: [maintainers](https://github.com/zalando-incubator/nakadi-java/blob/master/MAINTAINERS)


Expand Down Expand Up @@ -95,7 +95,7 @@ The client's had some basic testing to verify it can handle things like
consumer stream connection/network failures and retries. It should not be
deemed robust yet, but it is a goal to produce a well-behaved production
level client especially for producing and consuming events for 1.0.0. The
releases from 0.6.0 and onwards seem fairly sane.
releases from 0.6.1 and onwards seem fairly sane.

See also:

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

```groovy
dependencies {
compile 'net.dehora.nakadi:nakadi-java-client:0.6.0'
compile 'net.dehora.nakadi:nakadi-java-client:0.6.1'
}
```

Expand All @@ -655,7 +655,7 @@ resolvers += "jcenter" at "http://jcenter.bintray.com"
and add the project to `libraryDependencies` in `build.sbt`:

```scala
libraryDependencies += "net.dehora.nakadi" % "nakadi-java-client" % "0.6.0"
libraryDependencies += "net.dehora.nakadi" % "nakadi-java-client" % "0.6.1"
```


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.6.0
version=0.6.1
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.6.0";
public static final String VERSION = "0.6.1";
}

0 comments on commit b071652

Please sign in to comment.