diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a81dba..8d23017 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 3.1.0 + +* Upgraded to support `analyzer` 2.0.0 major release + ## 3.0.1 * Updated help to use `angel3` diff --git a/README.md b/README.md index be4d76a..f4a1e36 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Screenshot of Terminal](screenshots/angel3-screenshot.png)](https://github.com/dukefirehawk/angel3-cli) -[![version](https://img.shields.io/badge/pub-v3.0.1-brightgreen)](https://pub.dartlang.org/angel3_cli) +[![version](https://img.shields.io/badge/pub-v3.1.0-brightgreen)](https://pub.dartlang.org/angel3_cli) [![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety) [![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion) diff --git a/lib/src/commands/init.dart b/lib/src/commands/init.dart index 0ea3038..11c33cc 100644 --- a/lib/src/commands/init.dart +++ b/lib/src/commands/init.dart @@ -84,7 +84,7 @@ class InitCommand extends Command { ..writeln() ..writeln('Find more documentation about Angel3:') ..writeln(' * https://angel3-framework.web.app') - ..writeln(' * https://angel3-docs.dukefirehaw.com') + ..writeln(' * https://angel3-docs.dukefirehawk.com') ..writeln( ' * https://www.youtube.com/playlist?list=PLl3P3tmiT-frEV50VdH_cIrA2YqIyHkkY') ..writeln(' * https://medium.com/the-angel-framework') diff --git a/lib/src/commands/install.dart b/lib/src/commands/install.dart index 17d12fb..fd56c8e 100644 --- a/lib/src/commands/install.dart +++ b/lib/src/commands/install.dart @@ -12,6 +12,7 @@ import 'package:yaml/yaml.dart' as yaml; import '../util.dart'; import 'make/maker.dart'; +@deprecated class InstallCommand extends Command { static const String repo = 'https://github.com/angel-dart/install.git'; static final Directory installRepo = diff --git a/pubspec.yaml b/pubspec.yaml index ebd3b15..8b0e762 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,12 +1,12 @@ name: angel3_cli -version: 3.0.1 +version: 3.1.0 description: Command line tools for the Angel3 framework, including scaffolding. homepage: https://angel3-framework.web.app/ repository: https://github.com/dukefirehawk/angel3-cli environment: sdk: '>=2.12.0 <3.0.0' dependencies: - analyzer: ^1.7.0 + analyzer: ^2.0.0 args: ^2.1.1 code_builder: ^4.0.0 dart_style: ^2.0.1