Skip to content

Commit e210f9a

Browse files
committed
v6.7.5
1 parent 2ebb870 commit e210f9a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [6.7.5] - 2025-04-11
2+
3+
* Small refactor to metro.dart
4+
15
## [6.7.4] - 2025-04-10
26

37
* Fix commands not being run using `runProcess`

lib/metro/metro.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ _makeModel(List<String> arguments) async {
10901090
String modelData = await MetroService.loadAsset("nylo-model.json");
10911091

10921092
// delete "nylo-model.json"
1093-
Process.start("rm", [fileName],
1093+
await Process.start("rm", [fileName],
10941094
runInShell: true, mode: ProcessStartMode.normal);
10951095
MetroConsole.writeInBlack("\n");
10961096

@@ -1116,7 +1116,7 @@ _makeModel(List<String> arguments) async {
11161116
? "${projectFile.creationPath!}/"
11171117
: "");
11181118

1119-
Process.start(
1119+
await Process.start(
11201120
"dart",
11211121
[
11221122
"format",

lib/nylo_framework.dart

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

3131
/// Nylo version
32-
const String nyloVersion = 'v6.7.4';
32+
const String nyloVersion = 'v6.7.5';

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: 6.7.4
3+
version: 6.7.5
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/framework/tree/6.x
66
issue_tracker: https://github.com/nylo-core/framework/issues

0 commit comments

Comments
 (0)