Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Aug 8, 2024
1 parent d915fad commit 6d03b1a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 2.3.1-beta01
## 2.3.1-beta02

- Minor changes
- Added Connectivity check to core and throw exceptions when internet connection is gone
- Fix for https://github.com/WalletConnect/WalletConnectFlutterV2/issues/303 (EIP-55 validation for SIWE)
- Minor improvements

## 2.3.0

Expand Down
4 changes: 2 additions & 2 deletions lib/apis/core/connectivity/connectivity.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ class ConnectivityState implements IConnectivity {
_isOnline = isMobileData || isWifi;

if (_isOnline && !_core.relayClient.isConnected) {
await _core.relayClient.connect();
await _core.relayClient.connect();
} else if (!_isOnline && _core.relayClient.isConnected) {
await _core.relayClient.disconnect();
await _core.relayClient.disconnect();
}
}
}
2 changes: 1 addition & 1 deletion lib/src/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 pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: walletconnect_flutter_v2
description: WalletConnect's official Dart library v2 for WalletKit and AppKit. The communications protocol for web3.
version: 2.3.1-beta01
version: 2.3.1-beta02
repository: https://github.com/WalletConnect/WalletConnectFlutterV2

environment:
Expand Down

0 comments on commit 6d03b1a

Please sign in to comment.