Skip to content

Commit

Permalink
prepare for 0.3.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed Aug 19, 2016
1 parent 4d1c67f commit 0829f97
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
v0.3.1 (2016/08/19):
Changed "generator" parameter of getvariants method to "as_generator", just for consistency.

v0.3.0 (2016/08/09):
Added caching functions for all query types except "fetch_all" if requests-cache is installed. Can turn request caching on with set_caching(), off with stop_caching(). The cache can be cleared with clear_cache().
Make "fetch_all" compatible with Elasticsearch v2.x scroll changes.
Added a "generator" option to getvariants (default False). When True, a generator to all results is returned rather than a list of all results. This requires much less memory for very large queries (eg vcf file annotation).
Added a "generator" parameter to getvariants (default False). When True, a generator to all results is returned rather than a list of all results. This requires much less memory for very large queries (eg vcf file annotation).

v0.2.0 (2015/10/28):
return None when input vid does not exist for getvariant method.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015, Chunlei Wu <cwu@scripps.edu>
Copyright (c) 2016, Chunlei Wu <cwu@scripps.edu>
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion myvariant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
except:
caching_avail = False

__version__ = '0.3.0'
__version__ = '0.3.1'

if sys.version_info[0] == 3:
str_types = str
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def read(fname):

setup(
name="myvariant",
version="0.3.0",
version="0.3.1",
author="Chunlei Wu, Cyrus Afrasiabi",
author_email="cwu@scripps.edu",
description="Python Client for MyVariant.Info services.",
Expand Down

0 comments on commit 0829f97

Please sign in to comment.