Skip to content

Commit

Permalink
New release v2.17.0rc2 (#83242)
Browse files Browse the repository at this point in the history
  • Loading branch information
sivel committed May 13, 2024
1 parent 8976724 commit 24a7dd9
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 1 deletion.
18 changes: 18 additions & 0 deletions changelogs/CHANGELOG-v2.17.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ ansible-core 2.17 "Gallows Pole" Release Notes

.. contents:: Topics

v2.17.0rc2
==========

Release Summary
---------------

| Release Date: 2024-05-13
| `Porting Guide <https://docs.ansible.com/ansible-core/2.17/porting_guides/porting_guide_core_2.17.html>`__
Bugfixes
--------

- Add a version ceiling constraint for pypsrp to avoid potential breaking changes in the 1.0.0 release.
- ansible-doc - fixed "inicates" typo in output
- ansible-doc - format top-level descriptions with multiple paragraphs as multiple paragraphs, instead of concatenating them (https://github.com/ansible/ansible/pull/83155).
- ensure we have logger before we log when we have increased verbosity.
- uri - update the documentation for follow_redirects.

v2.17.0rc1
==========

Expand Down
24 changes: 24 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -652,3 +652,27 @@ releases:
- python-support.yml
- vmware_facts.yml
release_date: '2024-04-29'
2.17.0rc2:
changes:
bugfixes:
- Add a version ceiling constraint for pypsrp to avoid potential breaking changes
in the 1.0.0 release.
- ansible-doc - fixed "inicates" typo in output
- ansible-doc - format top-level descriptions with multiple paragraphs as multiple
paragraphs, instead of concatenating them (https://github.com/ansible/ansible/pull/83155).
- ensure we have logger before we log when we have increased verbosity.
- uri - update the documentation for follow_redirects.
release_summary: '| Release Date: 2024-05-13
| `Porting Guide <https://docs.ansible.com/ansible-core/2.17/porting_guides/porting_guide_core_2.17.html>`__
'
codename: Gallows Pole
fragments:
- 2.17.0rc2_summary.yaml
- 83155-ansible-doc-paragraphs.yml
- ansible-doc-inicate.yml
- fix_log_verbosity.yml
- psrp-version-req.yml
- uri_follow_redirect_bool.yml
release_date: '2024-05-13'
3 changes: 3 additions & 0 deletions changelogs/fragments/2.17.0rc2_summary.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2024-05-13
| `Porting Guide <https://docs.ansible.com/ansible-core/2.17/porting_guides/porting_guide_core_2.17.html>`__
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

from __future__ import annotations

__version__ = '2.17.0rc1.post0'
__version__ = '2.17.0rc2'
__author__ = 'Ansible, Inc.'
__codename__ = "Gallows Pole"

0 comments on commit 24a7dd9

Please sign in to comment.