Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakjois committed Feb 6, 2018
1 parent 6da36a8 commit 8755cc4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.2.0] - 2018-02-06
* Added possibility to create a DgraphClient with a specified request
deadline (#48).

## [1.1.0] - 2018-01-17
* Incorporated proto file changes in Dgraph 1.2.0 release

## [1.0.0] - 2017-12-18
* Fully compatible with Dgraph v1.0

[Unreleased]: https://github.com/dgraph-io/dgraph4j/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/dgraph-io/dgraph4j/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/dgraph-io/dgraph4j/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/dgraph-io/dgraph4j/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/dgraph-io/dgraph4j/tree/v1.0.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ grab via Maven:
<dependency>
<groupId>io.dgraph</groupId>
<artifactId>dgraph4j</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.dgraph:dgraph4j:1.1.0'
compile 'io.dgraph:dgraph4j:1.2.0'
```

## Quickstart
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ apply plugin: 'signing'

group = 'io.dgraph'
archivesBaseName = 'dgraph4j'
version = '1.1.0'
version = '1.2.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down
2 changes: 1 addition & 1 deletion samples/DgraphJavaSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {

dependencies {
// Use Dgraph Java client
compile 'io.dgraph:dgraph4j:1.1.0'
compile 'io.dgraph:dgraph4j:1.2.0'

// Use JUnit test framework
testCompile 'junit:junit:4.12'
Expand Down

0 comments on commit 8755cc4

Please sign in to comment.