Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloAvv committed Nov 16, 2023
1 parent d17304d commit ff3fb43
Show file tree
Hide file tree
Showing 15 changed files with 347 additions and 310 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.0.5'
flutter-version: '3.16.0'
- name: Install dependencies
run: flutter pub get
- name: Run tests
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.3.

* Bumped dependencies
* Added collection utils

## 1.0.2.

* Mapper, DTOMapper and DTO are now constants
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ in your [pubspec.yaml](https://dart.dev/tools/pub/pubspec):

```yaml
dev_dependencies:
pine: ^1.0.2
pine: ^1.0.3
```
You can install packages from the command line:
Expand Down
2 changes: 1 addition & 1 deletion example/lib/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import 'package:news_app/di/dependency_injector.dart';
import 'package:news_app/pages/home_page.dart';

class App extends StatelessWidget {
const App({Key? key}) : super(key: key);
const App({super.key});

@override
Widget build(BuildContext context) => DependencyInjector(
Expand Down
4 changes: 2 additions & 2 deletions example/lib/di/dependency_injector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ class DependencyInjector extends StatelessWidget {
final Widget child;

const DependencyInjector({
Key? key,
super.key,
required this.child,
}) : super(key: key);
});

@override
Widget build(BuildContext context) => DependencyInjectorHelper(
Expand Down
2 changes: 1 addition & 1 deletion example/lib/pages/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import 'package:news_app/pages/webview_page.dart';
import 'package:news_app/widgets/article_widget.dart';

class HomePage extends StatelessWidget {
const HomePage({Key? key}) : super(key: key);
const HomePage({super.key});

@override
Widget build(BuildContext context) => Scaffold(
Expand Down
4 changes: 2 additions & 2 deletions example/lib/pages/webview_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ class WebViewPage extends StatefulWidget {

const WebViewPage(
this.article, {
Key? key,
}) : super(key: key);
super.key,
});

@override
State<StatefulWidget> createState() => _WebViewPageState();
Expand Down
4 changes: 2 additions & 2 deletions example/lib/widgets/article_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ class ArticleWidget extends StatelessWidget {

const ArticleWidget(
this.article, {
Key? key,
super.key,
this.onTap,
}) : super(key: key);
});

@override
Widget build(BuildContext context) => ListTile(
Expand Down
Loading

0 comments on commit ff3fb43

Please sign in to comment.