Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

Commit

Permalink
version bump and details for 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanCoding committed Apr 25, 2018
1 parent cec8413 commit 4074a5c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 259 deletions.
242 changes: 0 additions & 242 deletions HISTORY.rst

This file was deleted.

1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# ----------------------
include LICENSE
include README.rst
include HISTORY.rst
include requirements.txt
recursive-include docs *
recursive-include tests *
Expand Down
28 changes: 15 additions & 13 deletions docs/source/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Release History
===============

3.3.0 (2018-04-25)
------------------

- Added send and receive commands to export and import resources
- Added support for import and export role memberships as well
- Added login command for token-based auth (AWX feature)
- Added options for workflow nodes and schedules (AWX feature)
- Added support for server-side copying (AWX feature)
- Added resource for activity stream
- Added abstract resource for job events
- Bug fixes for label creation, workflow monitor, global config, role list

3.2.1 (2017-12-19)
------------------

Expand Down Expand Up @@ -28,7 +40,7 @@ Release History
*Updates from Tower 3.2:*

- Migrated to API V2. All API calls will start with `/api/v2` instead of `/api/v1`.
- Made inventory_source an external resource and remove the old relationship as a group. associate. Remove launching inventory updates from group resource.
- Made inventory_source an external resource and remove the old relationship to its associated group. Remove launching inventory updates from group resource.
- Added credential_type resource and significantly modified credential resource to reveal user-defined credentials feature of Tower 3.2.
- Added job template extra credential (dis)association to reveal extra_credential field of 3.2 job templates.
- Removed all source-specific inventory source fields and replaced them with a `credential` field.
Expand All @@ -47,28 +59,18 @@ Release History
- Disabled launching a job using the jobs endpoint.
- Removed scan jobs in favor of new job fact cache.
- Removed Rackspace options.
- Old association function for project’s organization.
- Remove outdated association function for project’s organization.

*Reflected from 3.1.8:*

- Include method of installing with alias tower-cli-v2
- Fix bug of incomplete role membership lookup, preventing granting of roles.
- Combine click parameters from multiple base classes in metaclass.
- Fix unicode bug in human display format.
- Add new page_size parameter to list view.
- Add scm_update_cache_timeout field to project resource.
- Begin process to deprecate python 2.6.

3.1.8 (2017-08-21)
------------------

- Fix bug of incomplete role membership lookup, preventing granting of roles
- New method of installing tower-cli-v1, specific to API v1 use
- Combine click parameters from multiple base classes in metaclass
- Fix unicode bug in human display format
- Add new page_size parameter to list view
- Add scm_update_cache_timeout field to project resource
- Begin process to deprecate python 2.6

3.1.7 (2017-08-07)
------------------

Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/ansible-tower-cli.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global srcname tower-cli

Name: ansible-%{srcname}
Version: 3.2.1
Version: 3.3.0
Release: 2%{?dist}
Summary: Commandline interface for Ansible Tower
Group: Development/Tools
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@ def combine_files(*args):

# Additional information
description='A CLI tool for Ansible Tower and AWX.',
long_description=combine_files('README.rst', 'HISTORY.rst'),
long_description=combine_files(
'README.rst',
os.path.join('docs', 'source', 'HISTORY.rst')
),
license='Apache 2.0',

# How to do the install
Expand Down
2 changes: 1 addition & 1 deletion tower_cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


VERSION = '3.2.1'
VERSION = '3.3.0'
CUR_API_VERSION = 'v2'

LAUNCH_TYPE_CHOICES = [
Expand Down

0 comments on commit 4074a5c

Please sign in to comment.