Skip to content

Commit

Permalink
Updated version for packages
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Dec 18, 2024
1 parent ae0d0f8 commit a4bf7d4
Show file tree
Hide file tree
Showing 14 changed files with 38 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The communications protocol for web3, Reown brings the ecosystem together by ena

| [Core SDK](packages/reown_core) | [Sign SDK](packages/reown_sign) | [WalletKit](packages/reown_walletkit) | [AppKit](packages/reown_appkit) |
|---------------------------------|---------------------------------|---------------------------------------|---------------------------------|
| 1.0.4 | 1.0.4 | 1.0.3 | 1.2.0 |
| 1.1.0 | 1.1.0 | 1.1.0 | 1.3.0 |

## License

Expand Down
6 changes: 6 additions & 0 deletions packages/reown_appkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.3.0-beta01

- Update to flutter version 3.24.5
- Dependency updates
- Reconnection and resubscription mechanism, specially for Android 15 that implemented a strict doze mode.

## 1.2.0

- Non-EVM Chains support
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_appkit/lib/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/reown_appkit/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reown_appkit
description: "Reown is the onchain UX platform that provides toolkits built on top of the WalletConnect Network"
version: 1.2.1
version: 1.3.0-beta01
homepage: https://github.com/reown-com/reown_flutter
repository: https://github.com/reown-com/reown_flutter/tree/master/packages/reown_appkit
documentation: https://docs.reown.com/appkit/flutter/core/installation
Expand Down
6 changes: 6 additions & 0 deletions packages/reown_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.1.0-beta01

- Update to flutter version 3.24.5
- Dependency updates
- Important bug fixes

## 1.0.4

- Minor change
Expand Down
12 changes: 6 additions & 6 deletions packages/reown_core/lib/connectivity/connectivity.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ class ConnectivityState implements IConnectivity {
final isOnlineStatus = isMobileData || isWifi || isEthernet || isVPN;

if (isOnline.value != isOnlineStatus) {
_core.logger.i('[$runtimeType] Connectivity changed $result');
isOnline.value = isOnlineStatus;
_core.logger.i('[$runtimeType] Connectivity changed $isOnlineStatus');

// if (isOnline.value && !_core.relayClient.isConnected) {
// await _core.relayClient.connect();
// } else if (!isOnline.value && _core.relayClient.isConnected) {
// await _core.relayClient.disconnect();
// }
if (isOnline.value && !_core.relayClient.isConnected) {
await _core.relayClient.connect();
} else if (!isOnline.value && _core.relayClient.isConnected) {
await _core.relayClient.disconnect();
}
}
}
}
2 changes: 1 addition & 1 deletion packages/reown_core/lib/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/reown_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reown_core
description: "Reown is the onchain UX platform that provides toolkits built on top of the WalletConnect Network"
version: 1.0.5
version: 1.1.0-beta01
homepage: https://github.com/reown-com/reown_flutter
repository: https://github.com/reown-com/reown_flutter/tree/master/packages/reown_core

Expand Down
6 changes: 6 additions & 0 deletions packages/reown_sign/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.1.0-beta01

- Update to flutter version 3.24.5
- Dependency updates
- Important bug fixes

## 1.0.4

- Minor change
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_sign/lib/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/reown_sign/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reown_sign
description: "Reown is the onchain UX platform that provides toolkits built on top of the WalletConnect Network"
version: 1.0.5
version: 1.1.0-beta01
homepage: https://github.com/reown-com/reown_flutter
repository: https://github.com/reown-com/reown_flutter/tree/master/packages/reown_sign

Expand Down
5 changes: 5 additions & 0 deletions packages/reown_walletkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.1.0-beta01

- Update to flutter version 3.24.5
- Dependency updates

## 1.0.3

- Minor dependency update
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_walletkit/lib/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/reown_walletkit/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reown_walletkit
description: "Reown is the onchain UX platform that provides toolkits built on top of the WalletConnect Network"
version: 1.0.3
version: 1.1.0-beta01
homepage: https://github.com/reown-com/reown_flutter
repository: https://github.com/reown-com/reown_flutter/tree/master/packages/reown_walletkit
documentation: https://docs.reown.com/walletkit/flutter/installation
Expand Down

0 comments on commit a4bf7d4

Please sign in to comment.