Skip to content

Commit

Permalink
2.0.0-rc.2 -> 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrevmatos committed Dec 23, 2021
1 parent 1f912ca commit f0ab064
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "light-client",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"description": "Raiden Light Client monorepo",
"author": "brainbot labs est.",
"private": true,
Expand Down
5 changes: 4 additions & 1 deletion raiden-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## [Unreleased]

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


[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...HEAD
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...v2.0.0
[2.0.0-rc.2]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.1...v2.0.0-rc.2
[2.0.0-rc.1]: https://github.com/raiden-network/light-client/compare/v1.1.0...v2.0.0-rc.1
[1.1.0]: https://github.com/raiden-network/light-client/compare/v1.0.0...v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion raiden-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@raiden_network/raiden-cli",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"author": "brainbot labs est.",
"license": "MIT",
"description": "Raiden Light Client standalone app with a REST API via HTTP",
Expand Down
5 changes: 4 additions & 1 deletion raiden-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [2.0.0] - 2021-12-23

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

### Added
Expand Down Expand Up @@ -617,7 +619,8 @@
- Add link to privacy policy.
- Add basic transfer screen.

[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...HEAD
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...v2.0.0
[2.0.0-rc.2]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.1...v2.0.0-rc.2
[2.0.0-rc.1]: https://github.com/raiden-network/light-client/compare/v1.1.0...v2.0.0-rc.1
[1.1.0]: https://github.com/raiden-network/light-client/compare/v1.0.0...v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion raiden-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raiden-dapp",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"private": true,
"description": "A dApp that showcases the Raiden Light Client sdk functionality",
"author": "brainbot labs est.",
Expand Down
9 changes: 8 additions & 1 deletion raiden-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Changelog

## [Unreleased]

## [2.0.0] - 2021-12-23
### Changed
- [#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
- [#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];
- [#2965] Add +5% `gasLimit` margin on transactions which are successfuly estimated, to avoid running out of gas on narrow calls.
- [#3012] Updated raiden-contracts to [v0.40](https://github.com/raiden-network/raiden-contracts/releases/tag/v0.40.0)

### Removed
- [#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

### Fixed
Expand All @@ -17,6 +22,7 @@
[#2953]: https://github.com/raiden-network/light-client/pull/2953
[#2963]: https://github.com/raiden-network/light-client/issues/2963
[#2965]: https://github.com/raiden-network/light-client/pull/2965
[#3012]: https://github.com/raiden-network/light-client/pull/3012

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

Expand Down Expand Up @@ -522,7 +528,8 @@
- Add protocol message implementation.


[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...HEAD
[Unreleased]: https://github.com/raiden-network/light-client/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.2...v2.0.0
[2.0.0-rc.2]: https://github.com/raiden-network/light-client/compare/v2.0.0-rc.1...v2.0.0-rc.2
[2.0.0-rc.1]: https://github.com/raiden-network/light-client/compare/v1.1.0...v2.0.0-rc.1
[1.1.0]: https://github.com/raiden-network/light-client/compare/v1.0.0...v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion raiden-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raiden-ts",
"version": "2.0.0-rc.2",
"version": "2.0.0",
"description": "Raiden Light Client Typescript/Javascript SDK",
"main": "dist:cjs/index.js",
"module": "dist/index.js",
Expand Down

0 comments on commit f0ab064

Please sign in to comment.