Skip to content

Commit

Permalink
2.0.0-alpha.2
Browse files Browse the repository at this point in the history
* add generated files
* update version
* ignore non-issues
  • Loading branch information
ultimaterex authored Nov 8, 2023
1 parent 1e78b1c commit 64ec12a
Show file tree
Hide file tree
Showing 16 changed files with 4,191 additions and 326 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ build/


# Generated Dart Files
*.g.dart
# *.g.dart
.flutter-plugins
.flutter-plugins-dependencies
2 changes: 0 additions & 2 deletions CHANGELOG copy.md

This file was deleted.

4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

## 2.0.0-alpha.2
- Fixed issue with generated code not being included in published version
- Improved CI analysis

## 2.0.0-alpha.1
- Initial version
Expand Down
266 changes: 0 additions & 266 deletions analysis_options copy.yaml

This file was deleted.

1 change: 0 additions & 1 deletion lib/api/api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ export 'fellowship_storage_api.dart';
export 'storage_api.dart';
export 'wallet_key_api.dart';
export 'wallet_state_api.dart';

42 changes: 0 additions & 42 deletions lib/api/party_storage_api.dart

This file was deleted.

3 changes: 3 additions & 0 deletions lib/api/wallet_state_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class WalletStateApi implements WalletStateAlgebra {
: api = WalletApi(WalletKeyApi(_secureStorage));

final Isar _instance;
// ignore: unused_field
final FlutterSecureStorage _secureStorage;
final WalletApi api;

Expand Down Expand Up @@ -253,7 +254,9 @@ class WalletStateApi implements WalletStateAlgebra {
@override
Either<String, Indices> validateCurrentIndicesForFunds(
String fellowship, String contract, int? someState) {
// ignore: unused_local_variable
final p = validateFellowship(fellowship);
// ignore: unused_local_variable
final c = validateContract(contract);
final indices = getCurrentIndicesForFunds(fellowship, contract, someState);

Expand Down
Loading

0 comments on commit 64ec12a

Please sign in to comment.