File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 1.9.1]
2
+
3
+ - Fix yaml parse error
4
+
1
5
## [ 1.9.0]
2
6
3
7
- Update to dart 3
4
8
- Make null safety mandatory
9
+ - Update impl/get_view.dart to adhere Flutter's - use_super_parameters
10
+ - Add support for Flutter 2.10
11
+ - Fix chinese translation
5
12
6
13
## [ 1.8.2]
7
14
Original file line number Diff line number Diff line change @@ -15,9 +15,11 @@ import '../shell/shel.utils.dart';
15
15
class PubspecUtils {
16
16
static final _pubspecFile = File ('pubspec.yaml' );
17
17
18
- static Pubspec get pubSpec => Pubspec .parse (pubspecJson );
18
+ static Pubspec get pubSpec => Pubspec .parse (pubspecString );
19
19
20
- static get pubspecJson => loadYaml (_pubspecFile.readAsStringSync ());
20
+ static String get pubspecString => _pubspecFile.readAsStringSync ();
21
+
22
+ static get pubspecJson => loadYaml (pubspecString);
21
23
22
24
/// separtor
23
25
static final _mapSep = _PubValue <String >(() {
Original file line number Diff line number Diff line change 1
1
name : get_cli
2
- version : 1.9.0
2
+ version : 1.9.1
3
3
homepage : https://github.com/jonataslaw/get_cli
4
4
description : Official CLI for GetX™ framework to build Flutter and Server
5
5
Applications easily
You can’t perform that action at this time.
0 commit comments