Skip to content

Commit

Permalink
v2.5.0b2 release cut
Browse files Browse the repository at this point in the history
  • Loading branch information
nitzmahone committed Feb 16, 2018
1 parent 3635961 commit 62139bb
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
2.5.0b1

2.5.0b2
2 changes: 2 additions & 0 deletions changelogs/CHANGELOG_v2.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
4 changes: 4 additions & 0 deletions test/runner/lib/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,10 @@ def _classify(self, path):
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',
Expand Down

0 comments on commit 62139bb

Please sign in to comment.