Skip to content

Commit

Permalink
Bump version to v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
haiyuazhang committed Oct 9, 2020
1 parent 67fdd29 commit 43d8833
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# Change Log

## v1.1.0 (2020-09-03)
## v1.2.0 (2020-10-09)

### NEW MODULES
- azure_rm_backupazurevm ([#248](https://github.com/ansible-collections/azure/pull/248))
- azure_rm_backupazurevm_info ([#248](https://github.com/ansible-collections/azure/pull/248))
- azure_rm_recoveryservicesvault ([#254](https://github.com/ansible-collections/azure/pull/254))
- azure_rm_openshiftmanagedcluster ([#276](https://github.com/ansible-collections/azure/pull/276))

### FEATURE ENHANCEMENT
- add python 3.8 support ([#246](https://github.com/ansible-collections/azure/pull/246))
- azure_rm_publicipaddress: support public Ipv6 address ([#125](https://github.com/ansible-collections/azure/pull/125))
- azure_rm_subnet: add private-endpoint-network-policies ([#256](https://github.com/ansible-collections/azure/pull/256))
- azure_rm: fetch availability zone info into hostvars ([#243](https://github.com/ansible-collections/azure/pull/243))
- azure_rm: make inventory_hostname configurable with hostvar_expressions ([#105](https://github.com/ansible-collections/azure/pull/105))

### BUG FIXING
- azure_rm_openshiftmanagedcluster: fix issue [#270](https://github.com/ansible-collections/azure/issues/270) and [#269](https://github.com/ansible-collections/azure/issues/269)
([#285](https://github.com/ansible-collections/azure/pull/285))


# v1.1.0 (2020-09-03)

### FEATURE ENHANCEMENT
- azure_rm_storageaccount: allow blob public access parameter ([#219](https://github.com/ansible-collections/azure/pull/219))
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace: azure
name: azcollection

# The version of the collection. Must be compatible with semantic versioning
version: 1.1.0
version: 1.2.0

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/azure_rm_openshiftmanagedcluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ def set_default(self):
self.body['properties']['ingressProfiles'] = [ingress_profile]
else:
# hard code the ingress profile name as default, so user don't need to specify it
for profile in self.body['properties']['ingressProfiles']:
for profile in self.body['properties']['ingressProfiles']:
profile['name'] = "default"
if 'name' not in self.body['properties']['workerProfiles'][0]:
self.body['properties']['workerProfiles'][0]['name'] = 'worker'
Expand Down

0 comments on commit 43d8833

Please sign in to comment.