Skip to content

Commit

Permalink
hotfix - re-enabled making methods public. (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
dheiman authored Sep 17, 2020
1 parent 0440e48 commit a3a51b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Change Log for FISSFC: the (Fi)recloud (S)ervice (S)elector
=======================================================================
Terms used below: HL = high level interface, LL = low level interface

v0.16.30 - HL: hotfix - re-enabled making methods public.

v0.16.29 - LL: added fields parameter to get_workspace; HL: space_exists,
attr_get, attr_copy, mop, validate_file_attrs, and config_validate
updated to use fields parameter in call to get_workspace; py3 fixes:
Expand Down
2 changes: 1 addition & 1 deletion firecloud/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Package version
__version__ = "0.16.29"
__version__ = "0.16.30"
3 changes: 3 additions & 0 deletions firecloud/fiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,9 @@ def expand_fc_groups(users, groups=None, seen=set()):
"""
for user in users:
fcgroup = None
if user.lower() == 'public':
yield 'public'
continue
if '@' not in user:
fcgroup = user
elif user.lower().endswith('@firecloud.org'):
Expand Down

0 comments on commit a3a51b7

Please sign in to comment.