Skip to content

Commit

Permalink
Change default manifest version in helper.py to 2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBelt committed Oct 25, 2021
1 parent 319ece9 commit bd9363d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def create_manifest(slug, plugin_dir="."):

# Query manifest information
manifest['name'] = input_default("Plugin name", manifest.get('name', slug))
manifest['version'] = input_default("Version", manifest.get('version', "1.0.0"))
manifest['version'] = input_default("Version", manifest.get('version', "2.0.0"))
manifest['license'] = input_default("License (if open-source, use license identifier from https://spdx.org/licenses/)", manifest.get('license', "proprietary"))
manifest['brand'] = input_default("Brand (prefix for all module names)", manifest.get('brand', manifest['name']))
manifest['author'] = input_default("Author", manifest.get('author', ""))
Expand Down

0 comments on commit bd9363d

Please sign in to comment.