From b67942e8824cfab15777f8babb907589a7463f73 Mon Sep 17 00:00:00 2001 From: liorblob Date: Thu, 21 Nov 2019 14:12:17 +0200 Subject: [PATCH] Release changes --- CHANGELOG.md | 6 ++++++ README.md | 9 ++++----- setup.py | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000000..5c55f887fd9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +v0.1.0 Release + +Capabilities: +**Extract** components(code, image, description etc.) from a Demisto YAML file into a directory. +**Unify** components(code, image, description etc.) to a single Demisto YAML file. +**Validate** Demisto content files. \ No newline at end of file diff --git a/README.md b/README.md index 16dbd2d2509..4d1a12972b7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ [![CircleCI](https://circleci.com/gh/demisto/demisto-sdk/tree/master.svg?style=svg)](https://circleci.com/gh/demisto/demisto-sdk/tree/master) -[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/demisto/demisto-sdk.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/demisto/demisto-sdk/context:python) # Demisto SDK @@ -14,16 +13,16 @@ The library uses python 3.7+. ### CLI You can use the SDK in the CLI as follows: -`demisto_sdk `. For more information, run `demisto_sdk -h`. +`demisto-sdk `. For more information, run `demisto-sdk -h`. #### Examples: -`demisto_sdk extract -i Integrations/integration-MyInt.yml -o Integrations/MyInt -m` +`demisto-sdk extract -i Integrations/integration-MyInt.yml -o Integrations/MyInt -m` will split the yml file to a directory with the integration components (code, image, description, pipfile etc.) -`demisto_sdk unify -i Integrations/MyInt -o Integrations` will grab the integration components and unify them to a single yaml file. +`demisto-sdk unify -i Integrations/MyInt -o Integrations` will grab the integration components and unify them to a single yaml file. -`demisto_sdk validate` will validate your content files. +`demisto-sdk validate` will validate your content files. ### In the code diff --git a/setup.py b/setup.py index 2f05621a22a..1a621f59b62 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ packages=find_packages(), include_package_data=True, entry_points={ - 'console_scripts': ['demisto_sdk=demisto_sdk.__main__:console_entry'] + 'console_scripts': ['demisto-sdk=demisto_sdk.__main__:console_entry'] }, long_description=readme, long_description_content_type='text/markdown',