Skip to content

Commit

Permalink
Fix format, provide missed error
Browse files Browse the repository at this point in the history
  • Loading branch information
rk0cc committed Jul 16, 2024
1 parent 75408f7 commit a24196f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions superuser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.1

* Resolve lower score due to violation of formatting
* Provide `SuperuserProcessError` for catching error when fetching from plugin.

## 1.0.0

* Add error handling
Expand Down
3 changes: 2 additions & 1 deletion superuser/lib/instance.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ library instance;

import 'package:superuser/superuser.dart';

export 'package:superuser_interfaces/superuser_interfaces.dart' show SuperuserInterface;
export 'package:superuser_interfaces/superuser_interfaces.dart'
show SuperuserInterface;
export 'src/instance.dart' show SuperuserInstance;
3 changes: 3 additions & 0 deletions superuser/lib/superuser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
/// as well as username who run current Flutter program.
library superuser;

export 'package:superuser_interfaces/superuser_interfaces.dart'
show SuperuserProcessError;

import 'package:superuser_interfaces/superuser_interfaces.dart'
show MockSuperuser;

Expand Down
2 changes: 1 addition & 1 deletion superuser/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: superuser
description: Detect, verify user who execute Flutter program has superuser role and running with superuser permission.
version: 1.0.0
version: 1.0.1
homepage: https://github.com/rk0cc/superuser
repository: https://github.com/rk0cc/superuser/tree/main/superuser
funding:
Expand Down

0 comments on commit a24196f

Please sign in to comment.