Skip to content

Commit

Permalink
🐛 Fix update execution
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Mar 19, 2022
1 parent b06c21f commit c979377
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void main(List<String> arguments) async {
workflow.clearItems();

final ArgParser parser = ArgParser()
..addOption('query', abbr: 'q', mandatory: true)
..addOption('query', abbr: 'q', defaultsTo: '')
..addFlag('verbose', abbr: 'v', defaultsTo: false)
..addFlag('update', abbr: 'u', defaultsTo: false);
final ArgResults args = parser.parse(arguments);
Expand Down
2 changes: 1 addition & 1 deletion bin/src/constants/config.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Config {
Config._();

static const String version = '2.0.5';
static const String version = '2.0.6';
static final Uri githubRepositoryUrl =
Uri.https('github.com', '/techouse/alfred-tailwindcss-docs');
static const String algoliaApplicationId = 'KNPXZI5B0M';
Expand Down
2 changes: 1 addition & 1 deletion info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>2.0.5</string>
<string>2.0.6</string>
<key>webaddress</key>
<string>https://github.com/techouse</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Search the Tailwind CSS documentation using Alfred
# Prevent accidental publishing to pub.dev.
publish_to: 'none'

version: 2.0.5
version: 2.0.6

environment:
sdk: '>=2.16.1 <3.0.0'
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.5
2.0.6

0 comments on commit c979377

Please sign in to comment.