1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix version in lib/ansible/release.py

Including `devel` in the version causes pip failures.
This commit is contained in:
Matt Clay 2018-02-09 04:47:13 -08:00
parent 2fece2f148
commit 6cbd7cc5d8

View file

@ -19,5 +19,5 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.6.0devel'
__version__ = '2.6.0'
__author__ = 'Ansible, Inc.'