Skip to content

Commit f0ab064

Browse files
committed
2.0.0-rc.2 -> 2.0.0
1 parent 1f912ca commit f0ab064

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "light-client",
3-
"version": "2.0.0-rc.2",
3+
"version": "2.0.0",
44
"description": "Raiden Light Client monorepo",
55
"author": "brainbot labs est.",
66
"private": true,

raiden-cli/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [2.0.0] - 2021-12-23
46
### Added
57
- [#2949] Passthrough `/payments` parameters, including `paths`, which should receive pre-fetched route in the format `{ route: Address[]; estimated_fee: NumericString; address_metadata?: MetadataMap }[]`.
68
- [#2971] Allow appending `:<block>` to `--user-deposit-contract-address=` option, to start scanning since this block instead of genesis
@@ -86,7 +88,8 @@
8688
[#2054]: https://github.com/raiden-network/light-client/pulls/2054
8789

8890

89-
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...HEAD
91+
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0...HEAD
92+
[2.0.0]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...v2.0.0
9093
[2.0.0-rc.2]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.1...v2.0.0-rc.2
9194
[2.0.0-rc.1]: https://github.com/raiden-network/light-client/compare/v1.1.0...v2.0.0-rc.1
9295
[1.1.0]: https://github.com/raiden-network/light-client/compare/v1.0.0...v1.1.0

raiden-cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@raiden_network/raiden-cli",
3-
"version": "2.0.0-rc.2",
3+
"version": "2.0.0",
44
"author": "brainbot labs est.",
55
"license": "MIT",
66
"description": "Raiden Light Client standalone app with a REST API via HTTP",

raiden-dapp/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [2.0.0] - 2021-12-23
6+
57
## [2.0.0-rc.2] - 2021-09-14
68

79
### Added
@@ -617,7 +619,8 @@
617619
- Add link to privacy policy.
618620
- Add basic transfer screen.
619621

620-
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...HEAD
622+
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0...HEAD
623+
[2.0.0]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...v2.0.0
621624
[2.0.0-rc.2]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.1...v2.0.0-rc.2
622625
[2.0.0-rc.1]: https://github.com/raiden-network/light-client/compare/v1.1.0...v2.0.0-rc.1
623626
[1.1.0]: https://github.com/raiden-network/light-client/compare/v1.0.0...v1.1.0

raiden-dapp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raiden-dapp",
3-
"version": "2.0.0-rc.2",
3+
"version": "2.0.0",
44
"private": true,
55
"description": "A dApp that showcases the Raiden Light Client sdk functionality",
66
"author": "brainbot labs est.",

raiden-ts/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [2.0.0] - 2021-12-23
46
### Changed
57
- [#2949] Allows `Raiden.transfer`'s `options.paths` to receive a broader schema, including `{ route: Address[]; estimated_fee: Int<32>; address_metadata?: ... }[]`, needed to support CLI's `paths` parameter of `/payments` endpoint
68
- [#2953] `config.gasPriceFactor` applies over `maxPriorityFeePerGas`, using the new fee parameters from London when possible; now, by default, no fee parameters are specified, leaving `ethers` and provider (e.g. Metamask) to figure out best gas fees, fixing [#2952];
79
- [#2965] Add +5% `gasLimit` margin on transactions which are successfuly estimated, to avoid running out of gas on narrow calls.
10+
- [#3012] Updated raiden-contracts to [v0.40](https://github.com/raiden-network/raiden-contracts/releases/tag/v0.40.0)
11+
12+
### Removed
813
- [#2965] Remove `options.subkey` on certain `Raiden` public methods; if you need to force subkey or main account usage for single txs, set `config.subkey` then reset after tx is sent; default behavior is kept
914

1015
### Fixed
@@ -17,6 +22,7 @@
1722
[#2953]: https://github.com/raiden-network/light-client/pull/2953
1823
[#2963]: https://github.com/raiden-network/light-client/issues/2963
1924
[#2965]: https://github.com/raiden-network/light-client/pull/2965
25+
[#3012]: https://github.com/raiden-network/light-client/pull/3012
2026

2127
## [2.0.0-rc.2] - 2021-09-14
2228

@@ -522,7 +528,8 @@
522528
- Add protocol message implementation.
523529

524530

525-
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...HEAD
531+
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0...HEAD
532+
[2.0.0]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...v2.0.0
526533
[2.0.0-rc.2]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.1...v2.0.0-rc.2
527534
[2.0.0-rc.1]: https://github.com/raiden-network/light-client/compare/v1.1.0...v2.0.0-rc.1
528535
[1.1.0]: https://github.com/raiden-network/light-client/compare/v1.0.0...v1.1.0

raiden-ts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "raiden-ts",
3-
"version": "2.0.0-rc.2",
3+
"version": "2.0.0",
44
"description": "Raiden Light Client Typescript/Javascript SDK",
55
"main": "dist:cjs/index.js",
66
"module": "dist/index.js",

0 commit comments

Comments
 (0)