Skip to content

Commit ab6e0e2

Browse files
committed
Prepare for v1.0.4 release
1 parent b5f81d8 commit ab6e0e2

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v1.0.4] - 2018-02-02
11+
1012
### Added
1113
- Optional `options` parameter of type `object` to the `DgraphClientStub` constructor
1214
- Optional `options` parameter of type `grpc.CallOptions` to the `DgraphClientStub`
1315
methods
16+
- Export `Txn` class
1417

1518
## [v1.0.3] - 2018-01-26
1619

@@ -37,7 +40,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3740
### Added
3841
- Full compatibility with Dgraph v1.0.0
3942

40-
[Unreleased]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.3...HEAD
43+
[Unreleased]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.4...HEAD
44+
[v1.0.3]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.3...v1.0.4
4145
[v1.0.3]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.2...v1.0.3
4246
[v1.0.2]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.1...v1.0.2
4347
[v1.0.1]: https://github.com/dgraph-io/dgraph-js/compare/v1.0.0...v1.0.1

lib/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export * from "./types";
22
export { Operation, Request, Assigned, TxnContext, Check, Version, NQuad, Value, Facet, SchemaNode, LinRead, Latency } from "../generated/api_pb";
3-
export * from "./client";
43
export * from "./clientStub";
4+
export * from "./client";
5+
export * from "./txn";
56
export * from "./errors";

lib/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ exports.Facet = api_pb_1.Facet;
1717
exports.SchemaNode = api_pb_1.SchemaNode;
1818
exports.LinRead = api_pb_1.LinRead;
1919
exports.Latency = api_pb_1.Latency;
20-
__export(require("./client"));
2120
__export(require("./clientStub"));
21+
__export(require("./client"));
22+
__export(require("./txn"));
2223
__export(require("./errors"));

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dgraph-js",
3-
"version": "1.0.4-beta.3",
3+
"version": "1.0.4",
44
"description": "Official javascript client for Dgraph",
55
"license": "Apache-2.0",
66
"repository": {

0 commit comments

Comments
 (0)