Skip to content

Commit

Permalink
0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dehora committed Mar 28, 2019
1 parent f373d69 commit 143acac
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
### Changes

### 0.13.0

- Adds circleci 2 configuration.
- Adds support for sending authorizations with subscriptions. @lmontrieux

### 0.12.0

- Adds support for propagating tracing spans. [#336](https://github.com/dehora/nakadi-java/issues/336)
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/dehora/nakadi-java.svg?style=svg)](https://circleci.com/gh/dehora/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.12.0](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.12.0)
- Source Release: [0.13.0](https://github.com/zalando-incubator/nakadi-java/releases/tag/0.13.0)
- Contact: [maintainers](https://github.com/zalando-incubator/nakadi-java/blob/master/MAINTAINERS)


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

```groovy
dependencies {
compile 'net.dehora.nakadi:nakadi-java-client:0.12.0'
compile 'net.dehora.nakadi:nakadi-java-client:0.13.0'
}
```

Expand All @@ -742,7 +742,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.12.0"
libraryDependencies += "net.dehora.nakadi" % "nakadi-java-client" % "0.13.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.12.0
version=0.13.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.12.0";
public static final String VERSION = "0.13.0";
}

0 comments on commit 143acac

Please sign in to comment.