Skip to content

Commit 445e513

Browse files
committed
Prepare for v1.0.3 release
1 parent b957a5e commit 445e513

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [v1.0.3] - 2018-01-26
11+
12+
### Changed
13+
- `grpc` is now a peer dependency
14+
1015
## [v1.0.2] - 2018-01-24
1116

1217
### Added
@@ -27,7 +32,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2732
### Added
2833
- Full compatibility with Dgraph v1.0.0
2934

30-
[Unreleased]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.2...HEAD
35+
[Unreleased]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.3...HEAD
36+
[v1.0.3]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.2...v1.0.3
3137
[v1.0.2]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.1...v1.0.2
3238
[v1.0.1]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.0...v1.0.1
3339
[v1.0.0]: https://github.com/dgraph-io/dgraph-js/tree/v1.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ and understand how to run and work with Dgraph.
3636
Install using npm:
3737

3838
```sh
39-
npm install dgraph-js --save
39+
npm install dgraph-js grpc --save
4040
```
4141

4242
or yarn:
4343

4444
```sh
45-
yarn add dgraph-js
45+
yarn add dgraph-js grpc
4646
```
4747

4848
## Quickstart

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dgraph-js",
3-
"version": "1.0.3-beta.1",
3+
"version": "1.0.3",
44
"description": "Official javascript client for Dgraph",
55
"license": "Apache-2.0",
66
"repository": {
@@ -51,6 +51,6 @@
5151
"google-protobuf": "^3.5.0"
5252
},
5353
"peerDependencies": {
54-
"grpc": ">=1.7.0 <1.9.0"
54+
"grpc": ">=1.7.0 <2.0.0"
5555
}
5656
}

0 commit comments

Comments
 (0)