Skip to content

Commit

Permalink
🔖 1.1.0 stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed Apr 3, 2024
1 parent b072e79 commit b329905
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changelog
=========
## 1.1.0
- Add MessageChannel RPC for web clients - stable version
- Update Archethic Dart SDK version 3.3.11

## 1.1.0-dev.3
- Update Archethic Dart SDK version 3.3.10

Expand Down
1 change: 1 addition & 0 deletions lib/src/transport/message_channel/awc_web.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ library awc;

import 'dart:async';
import 'dart:developer';
// ignore: avoid_web_libraries_in_flutter
import 'dart:html';

import 'package:js/js.dart';
Expand Down
1 change: 1 addition & 0 deletions lib/src/transport/message_channel/message_channel.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:async';
// ignore: avoid_web_libraries_in_flutter
import 'dart:html';

import 'package:archethic_wallet_client/archethic_wallet_client.dart';
Expand Down
20 changes: 10 additions & 10 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ packages:
dependency: "direct main"
description:
name: archethic_lib_dart
sha256: "126d8cb7e79dd201c1ec6d2472d12124c3473004413b0befe3ce8d53abb25409"
sha256: "6de293153303da1a32e8b32e12410bf3da351f24aeb5b77fccd052aab852bb7e"
url: "https://pub.dev"
source: hosted
version: "3.3.10"
version: "3.3.11"
archive:
dependency: transitive
description:
Expand Down Expand Up @@ -101,10 +101,10 @@ packages:
dependency: "direct dev"
description:
name: build_runner
sha256: "581bacf68f89ec8792f5e5a0b2c4decd1c948e97ce659dc783688c8a88fbec21"
sha256: "3ac61a79bfb6f6cc11f693591063a7f19a7af628dc52f141743edac5c16e8c22"
url: "https://pub.dev"
source: hosted
version: "2.4.8"
version: "2.4.9"
build_runner_core:
dependency: transitive
description:
Expand All @@ -125,10 +125,10 @@ packages:
dependency: transitive
description:
name: built_value
sha256: fedde275e0a6b798c3296963c5cd224e3e1b55d0e478d5b7e65e6b540f363a0e
sha256: c7913a9737ee4007efedaffc968c049fd0f3d0e49109e778edc10de9426005cb
url: "https://pub.dev"
source: hosted
version: "8.9.1"
version: "8.9.2"
characters:
dependency: transitive
description:
Expand Down Expand Up @@ -303,10 +303,10 @@ packages:
dependency: transitive
description:
name: frontend_server_client
sha256: "408e3ca148b31c20282ad6f37ebfa6f4bdc8fede5b74bc2f08d9d92b55db3612"
sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694
url: "https://pub.dev"
source: hosted
version: "3.2.0"
version: "4.0.0"
glob:
dependency: transitive
description:
Expand Down Expand Up @@ -559,10 +559,10 @@ packages:
dependency: transitive
description:
name: phoenix_socket
sha256: a9d62b25291c3fea7c4439376f33860fb27ff39a7d69a96063fc356e78dee87f
sha256: "21c0ed733db29a74d54f676aaab4800d8b7278bc0e4e95a7a7c5d7773464a2bf"
url: "https://pub.dev"
source: hosted
version: "0.7.0"
version: "0.7.1"
pinenacl:
dependency: transitive
description:
Expand Down
7 changes: 2 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: archethic_wallet_client
description: A client dart library to interact with Archethic Wallet RPC API.
version: 1.1.0-dev.3
version: 1.1.0
homepage: https://github.com/archethic-foundation/archethic-wallet-client-dart

environment:
Expand All @@ -9,10 +9,6 @@ environment:
dependencies:
# Archethic dart library for Flutter
archethic_lib_dart: ^3.3.0
#archethic_lib_dart:
# git:
# url: https://github.com/archethic-foundation/libdart.git
# ref: 126-manage-http-status-code-in-callscfunction-method

# A RPC-via-deeplink communication library coded in Dart. This is dedicated to Flutter mobile applications (iOS / Android).
deeplink_rpc: ^1.0.6
Expand All @@ -32,6 +28,7 @@ dependencies:
# JSON-RPC (v2.0) utility classes. Invoke methods on another machine using JSON-formatted messages. Some assembly required.
json_rpc_2: ^3.0.2

# An abstraction for two-way communication channels based on the Dart Stream class.
stream_channel: ^2.1.2

# StreamChannel wrappers for WebSockets. Provides a cross-platform WebSocketChannel API, a cross-platform implementation of that API that communicates over an underlying StreamChannel.
Expand Down

0 comments on commit b329905

Please sign in to comment.