Skip to content

Commit

Permalink
format, changelog, bump
Browse files Browse the repository at this point in the history
  • Loading branch information
anthochamp committed Feb 5, 2024
1 parent 53e7cd2 commit 056c4d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.5

- Minor changes

## 0.1.4

- Add a stub implementation for JS platform
Expand Down
3 changes: 2 additions & 1 deletion lib/ac_inet_connectivity_checker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// SPDX-License-Identifier: BSD-3-Clause

export 'src/inet_concurrent_connectivity_checker.dart';
export 'src/inet_connectivity_checker_vm.dart' if (dart.library.html) 'src/inet_connectivity_checker_js.dart';
export 'src/inet_connectivity_checker_vm.dart'
if (dart.library.html) 'src/inet_connectivity_checker_js.dart';
export 'src/inet_endpoint.dart';
export 'src/root_name_servers.dart';
3 changes: 2 additions & 1 deletion lib/src/inet_concurrent_connectivity_checker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import 'dart:async';

import 'package:async/async.dart';

import 'inet_connectivity_checker_vm.dart' if (dart.library.html) 'inet_connectivity_checker_js.dart';
import 'inet_connectivity_checker_vm.dart'
if (dart.library.html) 'inet_connectivity_checker_js.dart';
import 'inet_endpoint.dart';

class InetConcurrentConnectivityChecker {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ac_inet_connectivity_checker
description: A simple, cancellable and stateless Internet connectivity checker which do not depend on any protocol
version: 0.1.4
version: 0.1.5
repository: https://github.com/anthochamp/dart-inet-connectivity-checker

environment:
Expand Down

0 comments on commit 056c4d4

Please sign in to comment.