Skip to content

Commit 6854bee

Browse files
committed
v2.1.2 - updates
1 parent a61a65e commit 6854bee

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [2.1.2] - 2021-12-12
2+
3+
* Update Controller stub
4+
* Pubspec.yaml dependency updates
5+
16
## [2.1.1] - 2021-12-10
27

38
* Upgrade to Dart 2.15

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a href="https://github.com/nylo-core/framework"><img alt="GitHub stars" src="https://img.shields.io/github/stars/nylo-core/framework?style=plastic"></a>
77
</p>
88

9-
## Nylo Framework (v2.1.1)
9+
## Nylo Framework (v2.1.2)
1010

1111
Nylo is a micro-framework for Flutter which is designed to help simplify app development. Every project provides a simple boilerplate and MVC pattern to help you build apps easier.
1212

example/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,14 +223,14 @@ packages:
223223
path: ".."
224224
relative: true
225225
source: path
226-
version: "2.1.1"
226+
version: "2.1.2"
227227
nylo_support:
228228
dependency: transitive
229229
description:
230230
name: nylo_support
231231
url: "https://pub.dartlang.org"
232232
source: hosted
233-
version: "2.2.1"
233+
version: "2.3.0"
234234
page_transition:
235235
dependency: transitive
236236
description:

lib/metro/stubs/controller_stub.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import 'package:flutter/widgets.dart';
44
55
class ${controllerName}Controller extends Controller {
66
7-
@override
87
construct(BuildContext context) {
9-
8+
super.construct(context);
9+
1010
}
1111
1212
}

lib/nylo_framework.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export 'package:nylo_support/alerts/toast_notification.dart';
1212
export 'package:nylo_support/nylo.dart';
1313

1414
/// Nylo version
15-
const String nyloVersion = 'v2.1.1';
15+
const String nyloVersion = 'v2.1.2';

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ packages:
223223
name: nylo_support
224224
url: "https://pub.dartlang.org"
225225
source: hosted
226-
version: "2.2.1"
226+
version: "2.3.0"
227227
page_transition:
228228
dependency: transitive
229229
description:

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: nylo_framework
22
description: Micro-framework for Flutter that's built to simplify app development for Flutter projects.
3-
version: 2.1.1
3+
version: 2.1.2
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/framework
66
issue_tracker: https://github.com/nylo-core/framework/issues
@@ -11,7 +11,7 @@ environment:
1111

1212
dependencies:
1313
flutter_dotenv: ^5.0.2
14-
nylo_support: ^2.2.1
14+
nylo_support: ^2.3.0
1515
flutter_launcher_icons: ^0.9.2
1616
args: ^2.3.0
1717
theme_provider: ^0.5.0

0 commit comments

Comments
 (0)