Skip to content

Commit

Permalink
Include digicert.
Browse files Browse the repository at this point in the history
  • Loading branch information
digimaun committed Jan 10, 2018
1 parent dc51755 commit b52885f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ When installing an extension any additional Python dependencies required will be

There are multiple options for installation. After following one, you can use `az extension list` to validate currently installed extensions or `az extension show --name azure-cli-iot-ext` to see details about this one.

In all cases, make sure the IoT extension is version **0.3.1** or greater.
In all cases, make sure the IoT extension is version **0.3.2** or greater.

#### Installation methods in prefered order

Expand All @@ -52,9 +52,9 @@ The argument for the source parameter is either the URL download path (the exten

`az extension add --source <local file path to release.whl OR url for release.whl>`

For example to install version 0.3.1
For example to install version 0.3.2

`az extension add --source 'https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.3.1/azure_cli_iot_ext-0.3.1-py2.py3-none-any.whl'`
`az extension add --source 'https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.3.2/azure_cli_iot_ext-0.3.2-py2.py3-none-any.whl'`

#### 1.c) Package from source method

Expand Down
2 changes: 1 addition & 1 deletion azext_iot/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.minCliCoreVersion": "2.0.24",
"version": "0.3.1"
"version": "0.3.2"
}
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "0.3.1"
VERSION = "0.3.2"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down Expand Up @@ -40,6 +40,6 @@
url='https://github.com/azure/azure-iot-cli-extension',
classifiers=CLASSIFIERS,
packages=find_packages(),
package_data={'azext_iot': ['azext_metadata.json']},
package_data={'azext_iot': ['azext_metadata.json', 'digicert.pem']},
install_requires=DEPENDENCIES
)

0 comments on commit b52885f

Please sign in to comment.