Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dehora committed Nov 18, 2016
1 parent 81e8a4d commit c93d1c7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### Changes

### 0.5.0

- Fix zign process call
- TokenProviderZign adds known scopes by default [#78](https://github.com/zalando-incubator/nakadi-java/issues/78)
- Update readme to point at nakadi-java-examples, help wanted, and recent features

### 0.4.0

- Make JsonSupport visible [#73](https://github.com/zalando-incubator/nakadi-java/issues/73)
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.4.0](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.4.0)
- Source Release: [0.5.0](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.5.0)
- 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.4.0 and onwards seem fairly sane.
releases from 0.5.0 and onwards seem fairly sane.

See also:

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

```groovy
dependencies {
compile 'net.dehora.nakadi:nakadi-java-client:0.4.0'
compile 'net.dehora.nakadi:nakadi-java-client:0.5.0'
}
```

Expand All @@ -654,7 +654,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.4.0"
libraryDependencies += "net.dehora.nakadi" % "nakadi-java-client" % "0.5.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.4.0
version=0.5.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.4.0";
public static final String VERSION = "0.5.0";
}

0 comments on commit c93d1c7

Please sign in to comment.