Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error caused by latest azure cli core version #427

Merged
merged 1 commit into from
Apr 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project since 0.82.0 will be documented in this file.

## [2.1.4] - 2020-04-01
### Changed
- Fix configparser error from Azure Cli Core [[#426](https://github.com/Azure/iotedgedev/issues/426)]

## [2.1.3] - 2020-03-27
### Changed
- Fix genconfig does not fail when schema validation failed. [[#424](https://github.com/Azure/iotedgedev/issues/424)]
Expand Down
6 changes: 1 addition & 5 deletions docker/tool/linux/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ RUN apt-get install -y wget && \
apt-get install -y dotnet-sdk-$DOTNETCORESDK_VERSION
RUN curl -L https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose
RUN AZ_REPO=$(lsb_release -cs) && \
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_REPO main" | \
tee /etc/apt/sources.list.d/azure-cli.list && \
apt-key adv --keyserver packages.microsoft.com --recv-keys 52E16F86FEE04B979B07E28DB02C46DF417A0893 && \
apt-get update && apt-get install azure-cli
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
RUN apt-get update && \
npm i npm@latest -g && \
npm i -g iothub-explorer yo generator-azure-iot-edge-module && \
Expand Down
2 changes: 1 addition & 1 deletion iotedgedev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

__author__ = 'Microsoft Corporation'
__email__ = 'vsciet@microsoft.com'
__version__ = '2.1.3'
__version__ = '2.1.4'
__AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.3
current_version = 2.1.4
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
'python-dotenv',
'requests >= 2.20.0, < 2.21',
'fstrings',
'azure-cli-core',
'azure-cli-core < 2.3.0',
'azure-cli-iot',
'azure-cli-profile',
'azure-cli-extension',
Expand All @@ -44,7 +44,7 @@

setup(
name='iotedgedev',
version='2.1.3',
version='2.1.4',
description='The Azure IoT Edge Dev Tool greatly simplifies the IoT Edge development process by automating many routine manual tasks, such as building, deploying, pushing modules and configuring the IoT Edge Runtime.',
long_description='See https://github.com/azure/iotedgedev for usage instructions.',
author='Microsoft Corporation',
Expand Down