Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Next Release
============

Features (CLI and Python API)
-----------------------------

* ``asset`` and ``release`` command:

* Asset information reporting using sub-commands like ``list`` or ``info`` now
include the asset ``ID``.


1.5.5
=====

Expand Down
1 change: 1 addition & 0 deletions github_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,7 @@ def _cli_release_debug(repo_name, tag_name):
def print_asset_info(i, asset, indent=""):
print(indent + "Asset #{i}".format(i=i))
indent = " " + indent
print(indent + "ID : {id}".format(i=i, **asset))
print(indent + "name : {name}".format(i=i, **asset))
print(indent + "state : {state}".format(i=i, **asset))
print(indent + "uploader : {login}".format(i=i, **asset['uploader']))
Expand Down