diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:16:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:16:49 +0000 |
commit | 48e387c5c12026a567eb7b293a3a590241c0cecb (patch) | |
tree | 80f2573be2d7d534b8ac4d2a852fe43f7ac35324 /lib/ansible/release.py | |
parent | Releasing progress-linux version 2.16.6-1~progress7.99u1. (diff) | |
download | ansible-core-48e387c5c12026a567eb7b293a3a590241c0cecb.tar.xz ansible-core-48e387c5c12026a567eb7b293a3a590241c0cecb.zip |
Merging upstream version 2.17.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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" |