Skip to content

Commit e1885d3

Browse files
authored
v0.16.0 release (#375)
* v0.16.0 release * v0.16.0 Fushicho3 compatibility * Fixed TS2300 build error * Fixed nyc coverage * optimised the nyc coverage output
1 parent be9a36d commit e1885d3

File tree

6 files changed

+24
-10
lines changed

6 files changed

+24
-10
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ cache:
99
before_script:
1010
- npm run build
1111
script:
12-
- npm run test:coveralls
13-
before_deploy:
12+
- npm run test:cov
13+
- npm run coveralls-report
1414
- npm install --global typedoc
1515
- typedoc --out ts-docs src
1616
- touch ./ts-docs/.nojekyll

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file.
33

44
The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6+
## [0.16.0] - 09-Dec-2019
7+
8+
**Milestone**: Fushicho.3
9+
10+
- Added epochAdjustment introduced in catapult-server v0.9.1.1 (Fushicho.3)
11+
- Added `setMaxFee` to `Transaction` which calculate max transaction fee using `feeMultiplier * transaction.size`.
12+
- Optimised `resolveAlias` implementation in transaction using object spread operator.
13+
- Fixed couple of bugs in `blockHttp` and unit tests
14+
615
## [0.15.1] - 06-Dec-2019
716

817
**Milestone**: Fushicho.2
@@ -277,6 +286,7 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e
277286
**Milestone**: Alpaca
278287

279288
- Initial code release.
289+
[0.16.0]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.15.1...v0.16.0
280290
[0.15.1]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.15.0...v0.15.1
281291
[0.15.0]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.14.4...v0.15.0
282292
[0.14.4]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.14.3...v0.14.4

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ with the NEM2 (a.k.a Catapult)
1010

1111
## Important Notes
1212

13-
### _Fushicho_ Network Compatibility (catapult-server@0.9.0.1)
13+
### _Fushicho_ Network Compatibility (catapult-server@0.9.1.1)
1414

15-
Due to a network upgrade with [catapult-server@Fushicho](https://github.com/nemtech/catapult-server/releases/tag/v0.9.0.1) version, **it is recommended to use this package's 0.15.1 version and upwards to use this package with Fushicho versioned networks**.
15+
Due to a network upgrade with [catapult-server@Fushicho](https://github.com/nemtech/catapult-server/releases/tag/v0.9.1.1) version, **it is recommended to use this package's 0.16.0 version and upwards to use this package with Fushicho versioned networks**.
1616

17-
The upgrade to this package's [version v0.15.1](https://github.com/nemtech/nem2-sdk-typescript-javascript/releases/tag/v0.15.1) is mandatory for **fushicho compatibility**.
17+
The upgrade to this package's [version v0.16.0](https://github.com/nemtech/nem2-sdk-typescript-javascript/releases/tag/v0.16.0) is mandatory for **fushicho compatibility**.
1818

1919
### _Elephant_ Network Compatibility (catapult-server@0.7.0.1)
2020

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: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nem2-sdk",
3-
"version": "0.15.1",
3+
"version": "0.16.0",
44
"description": "Reactive Nem2 sdk for typescript and javascript",
55
"scripts": {
66
"pretest": "npm run build",
@@ -9,8 +9,9 @@
99
"test:e2e": "npm run build && mocha --ui bdd --recursive ./dist/e2e --timeout 90000",
1010
"test:all": "mocha --ui bdd --recursive ./dist/ --timeout 90000",
1111
"build": "rm -rf dist/ && tsc && npm run e2econfigcopy",
12-
"test:cov": "nyc --reporter=lcov --reporter=text-lcov npm t && nyc report --reporter=text-lcov",
13-
"test:coveralls": "npm run test:cov | coveralls"
12+
"test:cov": "nyc --reporter=lcov --reporter=text-summary npm t",
13+
"test:coveralls": "npm run test:cov | coveralls",
14+
"coveralls-report": "cat ./coverage/lcov.info | coveralls"
1415
},
1516
"contributors": [
1617
{
@@ -77,8 +78,10 @@
7778
"rxjs": "^6.2.1"
7879
},
7980
"nyc": {
81+
"exclude-after-remap": false,
8082
"exclude": [
81-
"**/*.spec.js"
83+
"**/*.spec.js",
84+
"gulpfile.js"
8285
]
8386
}
8487
}

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"stripInternal": true,
1313
"outDir": "dist",
1414
"allowJs": false,
15+
"skipLibCheck": true,
1516
"lib": [
1617
"es2017",
1718
"dom"

0 commit comments

Comments
 (0)