From cff49aa94a935e3e74c337e166738fc8728641d7 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Sat, 25 Mar 2017 18:39:31 -0400 Subject: [PATCH] 1.0.9 --- lib/src/commands/plugin.dart | 3 ++- lib/src/pubspec.update.g.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/src/commands/plugin.dart b/lib/src/commands/plugin.dart index fdadffe2..dd1e0c56 100644 --- a/lib/src/commands/plugin.dart +++ b/lib/src/commands/plugin.dart @@ -32,7 +32,8 @@ class PluginCommand extends Command { String _generatePlugin(PubSpec pubspec, String name, String lower) { return ''' -library ${pubspec.name}.plugins.$lower; +library ${pubspec.name}.config.plugins.$lower; + import 'dart:async'; import 'package:angel_framework/angel_framework.dart'; diff --git a/lib/src/pubspec.update.g.dart b/lib/src/pubspec.update.g.dart index 7ea21bad..0bd08f21 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, 7); +final Version PACKAGE_VERSION = new Version(1, 0, 9); 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 a642a60a..63c7451e 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.8" +version: "1.0.9" dependencies: # analyzer: "^0.29.0" args: "^0.13.7"