Skip to content

Commit a61a65e

Browse files
committed
v2.1.1 - updates
1 parent c82fe42 commit a61a65e

File tree

6 files changed

+28
-20
lines changed

6 files changed

+28
-20
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.1.1] - 2021-12-10
2+
3+
* Upgrade to Dart 2.15
4+
* Add toast notifications
5+
* Pubspec.yaml dependency updates
6+
17
## [2.1.0] - 2021-12-08
28

39
* Update Nylo version

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.0)
9+
## Nylo Framework (v2.1.1)
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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ packages:
2828
name: async
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "2.8.1"
31+
version: "2.8.2"
3232
boolean_selector:
3333
dependency: transitive
3434
description:
@@ -42,7 +42,7 @@ packages:
4242
name: characters
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "1.1.0"
45+
version: "1.2.0"
4646
charcode:
4747
dependency: transitive
4848
description:
@@ -209,7 +209,7 @@ packages:
209209
name: matcher
210210
url: "https://pub.dartlang.org"
211211
source: hosted
212-
version: "0.12.10"
212+
version: "0.12.11"
213213
meta:
214214
dependency: transitive
215215
description:
@@ -223,14 +223,14 @@ packages:
223223
path: ".."
224224
relative: true
225225
source: path
226-
version: "2.1.0"
226+
version: "2.1.1"
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.0"
233+
version: "2.2.1"
234234
page_transition:
235235
dependency: transitive
236236
description:
@@ -389,7 +389,7 @@ packages:
389389
name: test_api
390390
url: "https://pub.dartlang.org"
391391
source: hosted
392-
version: "0.4.2"
392+
version: "0.4.3"
393393
theme_provider:
394394
dependency: transitive
395395
description:
@@ -417,7 +417,7 @@ packages:
417417
name: vector_math
418418
url: "https://pub.dartlang.org"
419419
source: hosted
420-
version: "2.1.0"
420+
version: "2.1.1"
421421
win32:
422422
dependency: transitive
423423
description:
@@ -447,5 +447,5 @@ packages:
447447
source: hosted
448448
version: "3.1.0"
449449
sdks:
450-
dart: ">=2.14.0 <3.0.0"
450+
dart: ">=2.15.0 <3.0.0"
451451
flutter: ">=2.0.0"

lib/nylo_framework.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ export 'package:nylo_support/helpers/helper.dart';
77
export 'package:nylo_support/controllers/controller.dart';
88
export 'package:nylo_support/localization/app_localization.dart';
99
export 'package:theme_provider/theme_provider.dart';
10+
export 'package:nylo_support/alerts/toast_enums.dart';
11+
export 'package:nylo_support/alerts/toast_notification.dart';
1012
export 'package:nylo_support/nylo.dart';
1113

1214
/// Nylo version
13-
const String nyloVersion = 'v2.1.0';
15+
const String nyloVersion = 'v2.1.1';

pubspec.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ packages:
2828
name: async
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "2.8.1"
31+
version: "2.8.2"
3232
boolean_selector:
3333
dependency: transitive
3434
description:
@@ -42,7 +42,7 @@ packages:
4242
name: characters
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "1.1.0"
45+
version: "1.2.0"
4646
charcode:
4747
dependency: transitive
4848
description:
@@ -209,7 +209,7 @@ packages:
209209
name: matcher
210210
url: "https://pub.dartlang.org"
211211
source: hosted
212-
version: "0.12.10"
212+
version: "0.12.11"
213213
meta:
214214
dependency: transitive
215215
description:
@@ -223,7 +223,7 @@ packages:
223223
name: nylo_support
224224
url: "https://pub.dartlang.org"
225225
source: hosted
226-
version: "2.2.0"
226+
version: "2.2.1"
227227
page_transition:
228228
dependency: transitive
229229
description:
@@ -382,7 +382,7 @@ packages:
382382
name: test_api
383383
url: "https://pub.dartlang.org"
384384
source: hosted
385-
version: "0.4.2"
385+
version: "0.4.3"
386386
theme_provider:
387387
dependency: "direct main"
388388
description:
@@ -410,7 +410,7 @@ packages:
410410
name: vector_math
411411
url: "https://pub.dartlang.org"
412412
source: hosted
413-
version: "2.1.0"
413+
version: "2.1.1"
414414
win32:
415415
dependency: transitive
416416
description:
@@ -440,5 +440,5 @@ packages:
440440
source: hosted
441441
version: "3.1.0"
442442
sdks:
443-
dart: ">=2.14.0 <3.0.0"
443+
dart: ">=2.15.0 <3.0.0"
444444
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.1.0
3+
version: 2.1.1
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.14.0 <3.0.0'
10+
sdk: '>=2.15.0 <3.0.0'
1111

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

0 commit comments

Comments
 (0)