Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.2.7 #5

Merged
merged 4 commits into from Aug 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
## 1.2.7

- `TypeInfo`:
- Added `T` generic type.
- Added `callCasted` to pass the `T` to a `Function<T>()`.
- Improved internal representation og `arguments`.
- `ReflectionBuilder`:
- Declare reflected types using `TypeInfo<T>` generics.
- Improved tests coverage.

## 1.2.6

- Add `coverage:ignore-file` to generated files.
Expand Down
4 changes: 2 additions & 2 deletions example/reflection_factory_bridge_example.reflection.g.dart
@@ -1,6 +1,6 @@
//
// GENERATED CODE - DO NOT MODIFY BY HAND!
// BUILDER: reflection_factory/1.2.6
// BUILDER: reflection_factory/1.2.7
// BUILD COMMAND: dart run build_runner build
//

Expand Down Expand Up @@ -35,7 +35,7 @@ class User$reflection extends ClassReflection<User> {
Version get languageVersion => Version.parse('2.17.0');

@override
Version get reflectionFactoryVersion => Version.parse('1.2.6');
Version get reflectionFactoryVersion => Version.parse('1.2.7');

@override
User$reflection withObject([User? obj]) => User$reflection(obj);
Expand Down
4 changes: 2 additions & 2 deletions example/reflection_factory_example.reflection.g.dart
@@ -1,6 +1,6 @@
//
// GENERATED CODE - DO NOT MODIFY BY HAND!
// BUILDER: reflection_factory/1.2.6
// BUILDER: reflection_factory/1.2.7
// BUILD COMMAND: dart run build_runner build
//

Expand Down Expand Up @@ -35,7 +35,7 @@ class User$reflection extends ClassReflection<User> {
Version get languageVersion => Version.parse('2.17.0');

@override
Version get reflectionFactoryVersion => Version.parse('1.2.6');
Version get reflectionFactoryVersion => Version.parse('1.2.7');

@override
User$reflection withObject([User? obj]) => User$reflection(obj);
Expand Down