Skip to content

Commit

Permalink
Issue 503
Browse files Browse the repository at this point in the history
  • Loading branch information
shamblett committed Nov 16, 2024
1 parent 01467a0 commit 8a56f02
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion lib/mqtt_browser_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright : S.Hamblett
*/

library mqtt_browser_client;
library;

import 'dart:async';
import 'dart:js_interop';
Expand Down
2 changes: 1 addition & 1 deletion lib/mqtt_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright : S.Hamblett
*/

library mqtt_client;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion lib/mqtt_server_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright : S.Hamblett
*/

library mqtt_server_client;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/observable/observable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library observable;
library;

export 'src/change_notifier.dart' show ChangeNotifier;
export 'src/observable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/observable/src/observable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library observable.src.observable;
library;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/observable/src/records.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library observable.src.records;
library;

/// Result of a change to an observed object.
class ChangeRecord {
Expand Down
22 changes: 11 additions & 11 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mqtt_client
description: A server and browser based MQTT client for Dart supporting normal, secure sockets and websockets.
version: 11.0.0
version: 10.5.1
repository: https://github.com/shamblett/mqtt_client
homepage: https://github.com/shamblett/mqtt_client

Expand All @@ -11,23 +11,23 @@ environment:
sdk: '>=3.3.0 <4.0.0'

dependencies:
typed_data: '^1.3.2'
event_bus: '^2.0.0'
path: '^1.9.0'
crypto: '^3.0.3'
meta: '^1.15.0'
typed_data: '^1.4.0'
event_bus: '^2.0.1'
path: '^1.9.1'
crypto: '^3.0.6'
meta: '^1.16.0'
web: '>=0.5.0 <2.0.0'

dev_dependencies:
test: '^1.25.8'
lints: '^4.0.0'
build_runner: '^2.4.11'
lints: '^5.0.0'
build_runner: '^2.4.13'
build_test: '^2.2.2'
build_web_compilers: '^4.0.10'
build_web_compilers: '^4.0.11'
mocktail: '^1.0.4'
http: '^1.2.2'
aws_signature_v4: '^0.6.0'
aws_common: '^0.7.0'
aws_signature_v4: '^0.6.3'
aws_common: '^0.7.4'

false_secrets:
- /test/pem/self_signed.key
Expand Down

0 comments on commit 8a56f02

Please sign in to comment.