Skip to content

Commit 41746c3

Browse files
committed
chore(release): bump version to 7.1.1
1 parent a40cf90 commit 41746c3

4 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [7.1.1] - 2026-03-29
2+
3+
### Changed
4+
* Page stub now sets `stateManaged` to `false` by default for newly scaffolded pages
5+
16
## [7.1.0] - 2026-03-29
27

38
### Added

lib/metro/stubs/page_stub.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ class _${className.pascalCase}PageState extends NyPage<${className.pascalCase}Pa
1818
get init => () {
1919
2020
};
21+
22+
@override
23+
bool get stateManaged => false;
2124
2225
@override
2326
Widget view(BuildContext context) {

lib/nylo_framework.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export 'package:date_field/date_field.dart';
1515
export 'package:dio/dio.dart';
1616

1717
/// Nylo version
18-
const String nyloVersion = 'v7.1.0';
18+
const String nyloVersion = 'v7.1.1';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 7.1.0
3+
version: 7.1.1
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/framework/tree/7.x
66
issue_tracker: https://github.com/nylo-core/framework/issues

0 commit comments

Comments
 (0)