release: 4.1.3

This commit is contained in:
Elliot Lee
2021-05-10 14:06:40 -07:00
parent dd3bc5a279
commit 1d23dd9d7b
3 changed files with 13 additions and 2 deletions

View File

@@ -1,4 +1,10 @@
# ripple-address-codec Release History
# ripple-address-cod
## 4.1.3 (2021-05-10)
* Update dependencies
* Add `build` script as an alias for `compile`
* Update README
## 4.1.2 (2021-01-11)

View File

@@ -175,6 +175,10 @@ Use `--coverage` to generate and display code coverage information:
This tells jest to output code coverage info in the `./coverage` directory, in addition to showing it on the command line.
## Releases
Use the [ripple-lib release checklist](https://github.com/ripple/ripple-lib/wiki/Release-Checklist), but just use `master` instead of `develop` as this project does not use a develop branch.
## Acknowledgements
This library references and adopts code and standards from the following sources:

View File

@@ -1,6 +1,6 @@
{
"name": "ripple-address-codec",
"version": "4.1.2",
"version": "4.1.3",
"description": "encodes/decodes base58 encoded XRP Ledger identifiers",
"files": [
"dist/*",
@@ -20,6 +20,7 @@
"prepublish": "tsc",
"prepublishOnly": "tslint -p ./ && jest",
"scripts": {
"build": "tsc",
"compile": "tsc",
"test": "jest",
"lint": "tslint -p ./"