Skip to content

Commit e3a07bb

Browse files
authored
Merge pull request #36 from ebolyen/changelog
REL: 0.0.2
2 parents 0047f9e + bb63291 commit e3a07bb

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Version 0.0.2 (2016-07-19)
2+
3+
* The result of commands can now be saved to an output directory with the `--output-dir` option. This will send any output artifacts/visualizations to the directory if they are not otherwise specified through their normal output options.
4+
5+
* All input options are now prefixed by their type to enable tab-completion. Input artifacts are prefixed with `--i-`, input parameters are `--p-`, metadata is `--m-`, and outputs are prefixed with `--o-`.
6+
7+
* All options are now sorted to make it simpler to read.
8+
9+
* When viewing a visualization, the return/enter key will no longer close the visualization. Use `ctrl-d`, `ctrl-c`, or `q` to quit.
10+
11+
* Improved error message when a command does not exist.
12+
13+
* Various unit-tests have been added.
14+
15+
116
# Version 0.0.1 (2016-07-14)
217

318
Initial alpha release. At this stage, major backwards-incompatible changes are expected to happen.

q2cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# The full license is in the file COPYING.txt, distributed with this software.
77
# ----------------------------------------------------------------------------
88

9-
__version__ = '0.0.1'
9+
__version__ = '0.0.2'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='q2cli',
13-
version='0.0.1',
13+
version='0.0.2',
1414
packages=find_packages(),
1515
include_package_data=True,
1616
install_requires=['click', 'qiime >= 2.0.0', 'pip'],

0 commit comments

Comments
 (0)