Skip to content

Commit

Permalink
0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dehora committed Nov 11, 2016
1 parent acbe3c3 commit d57b934
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

- Handle retryable errors on subscription consumer checkpointer [#28](https://github.com/zalando-incubator/nakadi-java/issues/28)
- Run healthcheck with a backoff.
- Extract a common data field interface for all Event categories.
- Extract a common data field interface for all Event categories.
- Fix event type setter checks


#### 0.0.3
Expand Down
8 changes: 4 additions & 4 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.0.3](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.0.3)
- Source Release: [0.0.4](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.0.4)
- Contact: [maintainers](https://github.com/zalando-incubator/nakadi-java/blob/master/MAINTAINERS)


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

```groovy
dependencies {
compile 'net.dehora.nakadi:nakadi-java-client:0.0.3'
compile 'net.dehora.nakadi:nakadi-java-client:0.0.4'
}
```

Expand All @@ -566,7 +566,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.0.3"
libraryDependencies += "net.dehora.nakadi" % "nakadi-java-client" % "0.0.4"
```


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.0.4-SNAPSHOT
version=0.0.4
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.0.4-SNAPSHOT";
public static final String VERSION = "0.0.4";
}

0 comments on commit d57b934

Please sign in to comment.