Skip to content

Commit

Permalink
publish vmware 3.2.0 (#3996)
Browse files Browse the repository at this point in the history
* rename to HISTORY.md
#3910 (comment)

* publish vmware 3.2.0
  • Loading branch information
cataggar authored Oct 26, 2021
1 parent c6c304f commit bfc3cc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/vmware/CHANGELOG.md → src/vmware/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 3.2.0
## 3.2.0 (2021-10)

- Add `az vmware workload-network dhcp` command group
- Add `az vmware workload-network dns-service` command group
Expand Down
8 changes: 4 additions & 4 deletions src/vmware/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
from io import open
from setuptools import setup, find_packages

VERSION = "3.1.0"
VERSION = "3.2.0"

with open('README.md', encoding='utf-8') as f:
readme = f.read()
with open('CHANGELOG.md', encoding='utf-8') as f:
changelog = f.read()
with open('HISTORY.md', encoding='utf-8') as f:
history = f.read()

setup(
name='vmware',
version=VERSION,
description='Azure VMware Solution commands.',
long_description=readme + '\n\n' + changelog,
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
license='MIT',
author='Microsoft',
Expand Down

0 comments on commit bfc3cc1

Please sign in to comment.