v2.5.0b2 release cut

pull/36302/head v2.5.0b2
Matt Davis 7 years ago
parent 3635961b1b
commit 62139bb828

@ -17,6 +17,6 @@ recursive-include test *
include Makefile
include VERSION
include MANIFEST.in
include CHANGELOG.md
include changelogs/*.rst
include contrib/README.md
recursive-include contrib/inventory *

@ -220,6 +220,11 @@ sdist: clean docs
sdist_upload: clean docs
$(PYTHON) setup.py sdist upload 2>&1 |tee upload.log
# TODO: variable-ize major version number usages here
.PHONY: changelog_reno
changelog_reno:
reno -d changelogs/ report --title 'Ansible 2.5 "Kashmir" Release Notes' --no-collapse-pre-release --no-show-source --earliest-version v2.5.0b1 --output changelogs/CHANGELOG_v2.5.rst
.PHONY: rpmcommon
rpmcommon: sdist
@mkdir -p rpm-build

@ -1,2 +1 @@
2.5.0b1
2.5.0b2

@ -588,6 +588,8 @@ Bugfixes
- interface_file - accept interfaces without address family or method (https://github.com/ansible/ansible/pull/34200)
- lineinfile - fix insertion if pattern already exists (https://github.com/ansible/ansible/pull/33393)
- nxos_evpn_vni - fixed a number of issues (https://github.com/ansible/ansible/pull/35930)
- nxos_igmp_interface - fix response handling for different nxos versions (https://github.com/ansible/ansible/pull/35959)

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

@ -570,6 +570,10 @@ class PathMapper(object):
if path.startswith('ticket_stubs/'):
return minimal
# FUTURE: add reno lint sanity test and run that along with yamllint
if path.startswith('changelogs/'):
return minimal
if '/' not in path:
if path in (
'.gitattributes',

Loading…
Cancel
Save