Skip to content

Commit

Permalink
Updated deps, incremented version no.
Browse files Browse the repository at this point in the history
  • Loading branch information
simphotonics committed Dec 29, 2024
1 parent 45156d5 commit f80d87a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## 0.4.1
- Updated dependencies.
- Updated dependencies (analyser `^7.0.0`).

## 0.4.0
- Require Dart 3,
Expand Down
2 changes: 0 additions & 2 deletions example/test_types/lib/src/sqlite_type.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/// Enum symbolizing valid Sqlite types.
// ignore_for_file: constant_identifier_names

enum SqliteType<T> {
INTEGER<int>('INTEGER'),
BOOL<bool>('INTEGER'),
Expand Down
4 changes: 3 additions & 1 deletion lib/src/extensions/generic_reader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ extension GenericReader on ConstantReader {
if (!isMatch(
dartTypeArgs[i],
typeArgs[i].reflectedType,
)) return false;
)) {
return false;
}
}
// Store fully resolved types.
_resolvedTypes[dartType] = type;
Expand Down
20 changes: 13 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,24 @@ version: 0.4.1

homepage: https://github.com/simphotonics/generic_reader

topics:
- analyzer
- build
- constant-expression
- source_gen

environment:
sdk: '^3.0.0'

dependencies:
analyzer: ^6.3.0
exception_templates: ^0.3.0
source_gen: ^1.4.0
analyzer: ^7.0.0
exception_templates: ^0.3.1
source_gen: ^2.0.0

dev_dependencies:
ansi_modifier: ^0.1.1
lints: ^3.0.0
source_gen_test: ^1.0.4
test: ^1.24.9
ansi_modifier: ^0.1.4
lints: ^5.1.1
source_gen_test: ^1.1.1
test: ^1.25.14
test_types:
path: example/test_types

0 comments on commit f80d87a

Please sign in to comment.