From 8b71a2603ddf287cfc4adde6c7c848cd9d1ba837 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Mon, 10 Apr 2017 09:42:17 -0400 Subject: [PATCH] override dates --- lib/src/commands/service.dart | 4 +++- lib/src/pubspec.update.g.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/src/commands/service.dart b/lib/src/commands/service.dart index dda6e6fb..f65e293e 100644 --- a/lib/src/commands/service.dart +++ b/lib/src/commands/service.dart @@ -165,8 +165,10 @@ class $name extends Model { @override String id; String name, desc; + @override + DateTime createdAt, updatedAt; - $name({this.id, this.name, this.desc}); + $name({this.id, this.name, this.desc, this.createdAt, this.updatedAt}); } ''' .trim()); diff --git a/lib/src/pubspec.update.g.dart b/lib/src/pubspec.update.g.dart index 0bd08f21..0f2c34a3 100644 --- a/lib/src/pubspec.update.g.dart +++ b/lib/src/pubspec.update.g.dart @@ -3,7 +3,7 @@ import 'dart:convert'; import 'package:http/src/base_client.dart' as http; import 'package:pub_semver/pub_semver.dart'; -final Version PACKAGE_VERSION = new Version(1, 0, 9); +final Version PACKAGE_VERSION = new Version(1, 0, 10); Future fetchCurrentVersion(http.BaseClient client) async { var response = await client.get('https://pub.dartlang.org/api/packages/angel_cli'); diff --git a/pubspec.yaml b/pubspec.yaml index 63c7451e..8706e718 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.0.9" +version: 1.0.10 dependencies: # analyzer: "^0.29.0" args: "^0.13.7"