Skip to content

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dehora committed Nov 13, 2016
1 parent 3587e18 commit 421f92c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.6](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.0.6)
- Source Release: [0.0.7](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.0.7)
- Contact: [maintainers](https://github.com/zalando-incubator/nakadi-java/blob/master/MAINTAINERS)


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

```groovy
dependencies {
compile 'net.dehora.nakadi:nakadi-java-client:0.0.6'
compile 'net.dehora.nakadi:nakadi-java-client:0.0.7'
}
```

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


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

0 comments on commit 421f92c

Please sign in to comment.