Skip to content

Commit 9a914cf

Browse files
committed
0.17.0 -> 1.0.0
1 parent e5d0614 commit 9a914cf

File tree

9 files changed

+16
-17
lines changed

9 files changed

+16
-17
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": "0.17.0",
3+
"version": "1.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,5 +1,7 @@
11
# Changelog
22

3+
## [1.0.0] - 2021-06-16
4+
35
## [0.17.0] - 2021-06-15
46
### Added
57
- [#2789] Make raiden-cli package being published to NPM registry on new relases
@@ -70,7 +72,8 @@
7072
[#2054]: https://github.com/raiden-network/light-client/pulls/2054
7173

7274

73-
[Unreleased]: https://github.com/raiden-network/light-client/compare/v0.17.0...HEAD
75+
[Unreleased]: https://github.com/raiden-network/light-client/compare/v1.0.0...HEAD
76+
[1.0.0]: https://github.com/raiden-network/light-client/compare/v0.17.0...v1.0.0
7477
[0.17.0]: https://github.com/raiden-network/light-client/compare/v0.16.0...v0.17.0
7578
[0.16.0]: https://github.com/raiden-network/light-client/compare/v0.15.0...v0.16.0
7679
[0.15.0]: https://github.com/raiden-network/light-client/compare/v0.14.0...v0.15.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": "0.17.0",
3+
"version": "1.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/.env.capacitor

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ NODE_ENV=production
22
VUE_APP_PUBLIC_PATH=./
33
VUE_APP_DB_ADAPTER=cordova-sqlite
44
VUE_APP_SERVICE_WORKER_DISABLED=true
5-
VUE_APP_PFS=https://pfs.demo001.env.raiden.network
6-
VUE_APP_MATRIX_SERVER=https://transport.demo001.env.raiden.network
7-
VUE_APP_UDC_ADDRESS=0x0794F09913AA8C77C8c5bdd1Ec4Bb51759Ee0cC5
8-
VUE_APP_HUB=hub.raiden.eth
9-
VUE_APP_ALLOW_MAINNET=false
5+
VUE_APP_ALLOW_MAINNET=true
106
VUE_APP_IMPRINT=https://raiden.network/privacy.html
117
VUE_APP_TERMS=https://github.com/raiden-network/light-client/blob/master/TERMS.md
128
VUE_APP_CONFIGURATION_URL=./config.capacitor.json

raiden-dapp/.env.production

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
VUE_APP_PFS=https://pfs.demo001.env.raiden.network
2-
VUE_APP_MATRIX_SERVER=https://transport.demo001.env.raiden.network
3-
VUE_APP_UDC_ADDRESS=0x0794F09913AA8C77C8c5bdd1Ec4Bb51759Ee0cC5
4-
VUE_APP_HUB=hub.raiden.eth
51
VUE_APP_ALLOW_MAINNET=true
62
VUE_APP_IMPRINT=https://raiden.network/privacy.html
73
VUE_APP_TERMS=https://github.com/raiden-network/light-client/blob/master/TERMS.md

raiden-dapp/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
## [1.0.0] - 2021-06-16
4+
35
## [0.17.0] - 2021-06-15
46

57
### Fixed
@@ -601,7 +603,8 @@
601603
- Add link to privacy policy.
602604
- Add basic transfer screen.
603605

604-
[Unreleased]: https://github.com/raiden-network/light-client/compare/v0.17.0...HEAD
606+
[Unreleased]: https://github.com/raiden-network/light-client/compare/v1.0.0...HEAD
607+
[1.0.0]: https://github.com/raiden-network/light-client/compare/v0.17.0...v1.0.0
605608
[0.17.0]: https://github.com/raiden-network/light-client/compare/v0.16.0...v0.17.0
606609
[0.16.0]: https://github.com/raiden-network/light-client/compare/v0.15.0...v0.16.0
607610
[0.15.0]: https://github.com/raiden-network/light-client/compare/v0.14.0...v0.15.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": "0.17.0",
3+
"version": "1.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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [1.0.0] - 2021-06-16
44
### Removed
55
- [#2571] **BREAKING** Remove ability to join and send messages to global service rooms
66
- [#2822] **BREAKING** Do not join global rooms anymore, so Matrix-based presence won't work
@@ -469,7 +469,8 @@
469469
- Add protocol message implementation.
470470

471471

472-
[Unreleased]: https://github.com/raiden-network/light-client/compare/v0.17.0...HEAD
472+
[Unreleased]: https://github.com/raiden-network/light-client/compare/v1.0.0...HEAD
473+
[1.0.0]: https://github.com/raiden-network/light-client/compare/v0.17.0...v1.0.0
473474
[0.17.0]: https://github.com/raiden-network/light-client/compare/v0.16.0...v0.17.0
474475
[0.16.0]: https://github.com/raiden-network/light-client/compare/v0.15.0...v0.16.0
475476
[0.15.0]: https://github.com/raiden-network/light-client/compare/v0.14.0...v0.15.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": "0.17.0",
3+
"version": "1.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)