Skip to content

Commit

Permalink
build: prepare repo for beta release (#1665)
Browse files Browse the repository at this point in the history
* fix github links

* fix webpacking

* more cleanup

* add 2.x to SECURITY.md

* update beta version
  • Loading branch information
mvadari committed Oct 4, 2021
1 parent 297dee9 commit 5200682
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 24 deletions.
1 change: 1 addition & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This table shows which versions of xrpl.js are currently supported with security

| Version | Supported |
| ------- | ---------------------- |
| 2.x | :white_check_mark: Yes |
| 1.x | :white_check_mark: Yes |
| 0.x | :x: No |

Expand Down
18 changes: 0 additions & 18 deletions circle.yml

This file was deleted.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "xrpl",
"version": "2.0.0-beta.0",
"version": "2.0.0-beta.1",
"license": "ISC",
"description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser",
"files": [
"dist/npm/*",
"build/ripple-latest-min.js",
"build/ripple-latest.js"
"build/xrpl-latest-min.js",
"build/xrpl-latest.js"
],
"main": "dist/npm/",
"unpkg": "build/ripple-latest-min.js",
"jsdelivr": "build/ripple-latest-min.js",
"unpkg": "build/xrpl-latest-min.js",
"jsdelivr": "build/xrpl-latest-min.js",
"types": "dist/npm/index.d.ts",
"directories": {
"test": "test"
Expand Down
2 changes: 1 addition & 1 deletion src/client/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export class Connection extends EventEmitter {
public async reconnect(): Promise<void> {
// NOTE: We currently have a "reconnecting" event, but that only triggers
// through an unexpected connection retry logic.
// See: https://github.com/ripple/ripple-lib/pull/1101#issuecomment-565360423
// See: https://github.com/XRPLF/xrpl.js/pull/1101#issuecomment-565360423
this.emit('reconnect')
await this.disconnect()
await this.connect()
Expand Down

0 comments on commit 5200682

Please sign in to comment.