New release v2.13.11rc1 (#81206)

pull/81211/head v2.13.11rc1
Matt Davis 2 years ago committed by GitHub
parent 58ae119ccf
commit dc54ab1ad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,28 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics
v2.13.11rc1
===========
Release Summary
---------------
| Release Date: 2023-07-10
| `Porting Guide <https://docs.ansible.com/ansible-core/2.13/porting_guides/porting_guide_core_2.13.html>`__
Minor Changes
-------------
- Removed ``straight.plugin`` from the build and packaging requirements.
Bugfixes
--------
- ansible-test - Fix a traceback that occurs when attempting to test Ansible source using a different ansible-test. A clear error message is now given when this scenario occurs.
- ansible-test local change detection - use ``git merge-base <branch> HEAD`` instead of ``git merge-base --fork-point <branch>`` (https://github.com/ansible/ansible/pull/79734).
- man page build - Remove the dependency on the ``docs`` directory for building man pages.
v2.13.10
========

@ -826,6 +826,31 @@ releases:
- ansible-test-utcnow.yml
- pep517-backend-traceback-fix.yml
release_date: '2023-05-15'
2.13.11rc1:
changes:
bugfixes:
- ansible-test - Fix a traceback that occurs when attempting to test Ansible
source using a different ansible-test. A clear error message is now given
when this scenario occurs.
- ansible-test local change detection - use ``git merge-base <branch> HEAD``
instead of ``git merge-base --fork-point <branch>`` (https://github.com/ansible/ansible/pull/79734).
- man page build - Remove the dependency on the ``docs`` directory for building
man pages.
minor_changes:
- Removed ``straight.plugin`` from the build and packaging requirements.
release_summary: '| Release Date: 2023-07-10
| `Porting Guide <https://docs.ansible.com/ansible-core/2.13/porting_guides/porting_guide_core_2.13.html>`__
'
codename: Nobody's Fault but Mine
fragments:
- 2.13.11rc1_summary.yaml
- 79734-ansible-test-change-detection.yml
- ansible-test-source-detection.yml
- build-no-straight.yaml
- man-page-build-docs-dependency.yml
release_date: '2023-07-10'
2.13.1rc1:
changes:
bugfixes:

@ -0,0 +1,3 @@
release_summary: |
| Release Date: 2023-07-10
| `Porting Guide <https://docs.ansible.com/ansible-core/2.13/porting_guides/porting_guide_core_2.13.html>`__

@ -19,6 +19,6 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
__version__ = '2.13.10.post0'
__version__ = '2.13.11rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"

Loading…
Cancel
Save