From a3b0d4f0e11ec0b8e77454abc8c97b1de4cfff3a Mon Sep 17 00:00:00 2001 From: Jai Ram Rideout Date: Thu, 14 Jul 2016 18:13:12 -0700 Subject: [PATCH] REL: 0.0.1 --- CHANGELOG.md | 3 +++ q2cli/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..dd62a966 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +# Version 0.0.1 (2016-07-14) + +Initial alpha release. At this stage, major backwards-incompatible changes are expected to happen. diff --git a/q2cli/__init__.py b/q2cli/__init__.py index 81071035..59584deb 100644 --- a/q2cli/__init__.py +++ b/q2cli/__init__.py @@ -6,4 +6,4 @@ # The full license is in the file COPYING.txt, distributed with this software. # ---------------------------------------------------------------------------- -__version__ = '0.0.0-dev' +__version__ = '0.0.1' diff --git a/setup.py b/setup.py index 03e73ad1..a68673d9 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='q2cli', - version='0.0.0-dev', + version='0.0.1', packages=find_packages(), include_package_data=True, install_requires=['click', 'qiime >= 2.0.0', 'pip'],