Skip to content

Commit

Permalink
changelog 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed Jul 24, 2018
1 parent f349f6b commit b43ea6f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
2018-07-24 3.1.0:
-------------------
* add git_rev to source section fields #41
* use versioneer for versioning #42
* import license families and FIELDS schema from conda-build when it is available #47
* make exiting optional, but always print errors #47

Contributors:
-------------

* @mandeep
* @msarahan


2018-03-02 3.0.2:
-------------------
* fix hash and filesize verification #19
Expand Down
3 changes: 3 additions & 0 deletions conda_verify/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ def verify_package(path_to_package=None, checks_to_ignore=None, exit_on_error=Fa
if check is not None and check.code not in ensure_list(checks_to_ignore):
checks_to_display.append(check)

if checks_to_display:
print("Package verification results:")
print("-----------------------------")
for check in sorted(checks_to_display):
try:
print(check, file=sys.stderr)
Expand Down

0 comments on commit b43ea6f

Please sign in to comment.