Skip to content

Commit

Permalink
sdk/node: tick version to 1.1.1
Browse files Browse the repository at this point in the history
Closes #881
  • Loading branch information
chrisgarvin authored and iampogo committed Apr 6, 2017
1 parent fdadc9f commit 6ae99f4
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 19 deletions.
2 changes: 1 addition & 1 deletion docs/core/get-started/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ To install, add the `chain-sdk` NPM module to your `package.json`, using a tilde
```
{
"dependencies": {
"chain-sdk": "~1.1.0"
"chain-sdk": "~1.1.1"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion generated/rev/RevId.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

public final class RevId {
public final String Id = "1.1-stable/rev2758";
public final String Id = "1.1-stable/rev2759";
}
2 changes: 1 addition & 1 deletion generated/rev/revid.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package rev

const ID string = "1.1-stable/rev2758"
const ID string = "1.1-stable/rev2759"
2 changes: 1 addition & 1 deletion generated/rev/revid.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

export const rev_id = "1.1-stable/rev2758"
export const rev_id = "1.1-stable/rev2759"
2 changes: 1 addition & 1 deletion generated/rev/revid.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

module Chain::Rev
ID = "1.1-stable/rev2758".freeze
ID = "1.1-stable/rev2759".freeze
end
17 changes: 4 additions & 13 deletions sdk/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Chain Node.js SDK

## 1.1.1 (April 5, 2017)

* Resolved an issue where transaction feeds would halt processing unexpectedly.

## 1.1.0 (February 24, 2017)

This release is a minor version update, and contains **new features** and **deprecations**. It is not compatible with cored 1.0.x; please upgrade cored before updating your SDKs.
Expand Down Expand Up @@ -144,16 +148,3 @@ client.transactions.queryAll({
...
})
```

## 1.0.2 (January 25, 2017)

* Use base URL and client token provided on initialization for MockHSM connection
* Allow users to instantiate `Connection` objects with `new chain.Connection()`

## 1.0.1 (January 24, 2017)

* README and documentation updates

## 1.0.0 (January 20, 2017)

* Initial release
2 changes: 1 addition & 1 deletion sdk/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chain-sdk",
"version": "1.1.0",
"version": "1.1.1",
"description": "The Official Node.js SDK for Chain Core",
"homepage": "https://github.com/chain/chain/tree/main/sdk/node",
"main": "dist/index.js",
Expand Down

0 comments on commit 6ae99f4

Please sign in to comment.