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

changelog #257

Merged
merged 1 commit into from
Mar 20, 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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Ansible-Alicloud Change Log
## 1.18.0 (Unreleased)
## 1.19.0 (Unreleased)

## 1.18.0 (20 March, 2020)
- improve(ali_instance): support modify instance charge type ([#256](https://github.com/alibaba/ansible-provider/pull/256))
- improve(disk_info): Add some new params and Add test case ([#248](https://github.com/alibaba/ansible-provider/pull/248))
- improve(disk): Add filters param ([#249](https://github.com/alibaba/ansible-provider/pull/249))
- improve(slb): support server_ids ([#250](https://github.com/alibaba/ansible-provider/pull/250))
- Add plugin alicloud_ecs and configuration file ([#252](https://github.com/alibaba/ansible-provider/pull/252))
- Add module ali_ecs_tag ([#254](https://github.com/alibaba/ansible-provider/pull/254))
- improve(eip/eni/vpc/ecs/security/slb/vsw): format code and doc ([#251](https://github.com/alibaba/ansible-provider/pull/251))
- improve(disk/dns/ram/rds/slb): format code and doc ([#253](https://github.com/alibaba/ansible-provider/pull/253))

## 1.17.0 (1 March, 2020)
- Add new module ali_market_product_info ([#240](https://github.com/alibaba/ansible-provider/pull/240))
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 @@
AUTHOR_EMAIL = "heguimin36@163.com"
URL = "https://github.com/alibaba/ansible-provider/tree/master/lib/ansible"

VERSION = "1.17.0"
VERSION = "1.18.0"

setup(
name=NAME,
Expand Down Expand Up @@ -59,5 +59,5 @@
package_dir={'': 'lib'},
packages=find_packages('lib'),
include_package_data=True,
install_requires=['ansible', 'footmark>=1.18.0', 'ansible_alicloud_module_utils>=1.3.0']
install_requires=['ansible', 'footmark>=1.19.0', 'ansible_alicloud_module_utils>=1.4.0']
)