diff options
Diffstat (limited to 'lib/ansible/release.py')
-rw-r--r-- | lib/ansible/release.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 60200a0..88f7515 100644 --- a/lib/ansible/release.py +++ b/lib/ansible/release.py @@ -15,10 +15,8 @@ # You should have received a copy of the GNU General Public License # along with Ansible. If not, see <http://www.gnu.org/licenses/>. -# Make coding more python3-ish -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations -__version__ = '2.16.6' +__version__ = '2.17.0' __author__ = 'Ansible, Inc.' -__codename__ = "All My Love" +__codename__ = "Gallows Pole" |