Skip to content

Commit f811df7

Browse files
authored
Merge pull request #25 from nylo-core/master
v2.0.2 - Upgrade Dart (v2.14.0), Pubspec.yaml dependency updates
2 parents e5ab1ad + 858fb86 commit f811df7

File tree

7 files changed

+22
-17
lines changed

7 files changed

+22
-17
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [2.0.2] - 2021-09-18
2+
3+
* Upgrade Dart (v2.14.0)
4+
* Pubspec.yaml dependency updates
5+
16
## [2.0.1] - 2021-09-11
27

38
* Remove NyBaseColors class

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.0.1)
9+
## Nylo Framework (v2.0.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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,14 @@ packages:
162162
path: ".."
163163
relative: true
164164
source: path
165-
version: "2.0.0"
165+
version: "2.0.2"
166166
nylo_support:
167167
dependency: transitive
168168
description:
169-
path: "/Users/anthony/AndroidStudioProjects/nylo_support"
170-
relative: false
171-
source: path
172-
version: "1.1.0"
169+
name: nylo_support
170+
url: "https://pub.dartlang.org"
171+
source: hosted
172+
version: "2.0.1"
173173
page_transition:
174174
dependency: transitive
175175
description:
@@ -372,5 +372,5 @@ packages:
372372
source: hosted
373373
version: "3.1.0"
374374
sdks:
375-
dart: ">=2.13.0 <3.0.0"
375+
dart: ">=2.14.0 <3.0.0"
376376
flutter: ">=2.0.0"

lib/nylo_framework.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ export 'package:theme_provider/theme_provider.dart';
1010
export 'package:nylo_support/nylo.dart';
1111

1212
/// Nylo version
13-
const String nyloVersion = 'v2.0.1';
13+
const String nyloVersion = 'v2.0.2';

lib/theme/helper/ny_theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ class NyTheme {
99
static set(BuildContext context, {required String id}) {
1010
ThemeProvider.controllerOf(context).setTheme(id);
1111
}
12-
}
12+
}

pubspec.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ packages:
159159
nylo_support:
160160
dependency: "direct main"
161161
description:
162-
path: "/Users/anthony/AndroidStudioProjects/nylo_support"
163-
relative: false
164-
source: path
165-
version: "1.1.0"
162+
name: nylo_support
163+
url: "https://pub.dartlang.org"
164+
source: hosted
165+
version: "2.0.1"
166166
page_transition:
167167
dependency: transitive
168168
description:
@@ -365,5 +365,5 @@ packages:
365365
source: hosted
366366
version: "3.1.0"
367367
sdks:
368-
dart: ">=2.13.0 <3.0.0"
368+
dart: ">=2.14.0 <3.0.0"
369369
flutter: ">=2.0.0"

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: nylo_framework
22
description: Micro-framework for Flutter that's built to simplify app development for Flutter projects.
3-
version: 2.0.1
3+
version: 2.0.2
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/framework
66
issue_tracker: https://github.com/nylo-core/framework/issues
77
documentation: https://github.com/nylo-core/framework
88

99
environment:
10-
sdk: '>=2.12.0 <3.0.0'
10+
sdk: '>=2.14.0 <3.0.0'
1111

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

0 commit comments

Comments
 (0)