diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d2d4324..3ac3dfca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.3.4 +* Fix another typo. + # 1.3.3 * Fix a small typo in the model generator. diff --git a/lib/src/commands/make/model.dart b/lib/src/commands/make/model.dart index 7053d411..f4b33038 100644 --- a/lib/src/commands/make/model.dart +++ b/lib/src/commands/make/model.dart @@ -73,8 +73,8 @@ class ModelCommand extends Command { } modelLib.body.addAll([ - new Code('part ${rc.snakeCase}.g.dart;'), - new Code('part ${rc.snakeCase}.serializer.g.dart;'), + new Code("part '${rc.snakeCase}.g.dart';"), + new Code("part '${rc.snakeCase}.serializer.g.dart';"), ]); modelLib.body.add(new Class((modelClazz) { diff --git a/pubspec.yaml b/pubspec.yaml index f27ae411..9e453811 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ author: Tobe O description: Command-line tools for the Angel framework. homepage: https://github.com/angel-dart/angel_cli name: angel_cli -version: 1.3.3 +version: 1.3.4 dependencies: analyzer: ">=0.32.0" args: ^1.0.0