Skip to content

Commit

Permalink
Set version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
konrad committed Mar 26, 2017
1 parent 8b2d7ac commit 588adaa
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
v0.1 (2016-11-11)
v0.3.0 (2017-03-26)
- Change of ratio's CLI interface (using of keyword parameters for BAM files)
- The subcommand ratio now normalizes to the number of aligned bases not reads
- Extend use of numpy
- Remove single factor setting in subcommand ratio
- Switch to pytest
- Switch to twine for package submission to PyPI

v0.2 (2016-11-11)
- Add wiggle rescaling

v0.1 (2016-07-11)
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ pylint:
pylint bin/bin covernantlib/* tests/*

pypi_submission:
python3 setup.py bdist upload
twine upload dist/*
@echo "Go to https://pypi.python.org/pypi/COVERnant/"


new_release:
@echo "* Create/checkout a release branch"
@echo " $$ git branch release_v0.X.0"
Expand All @@ -32,7 +33,7 @@ new_release:
@echo "* Test package creation"
@echo " $$ make package"
@echo "* Submit package"
@echo " $$ make package_to_pypi"
@echo " $$ make pypi_submission"
@echo "* Add and commit changes"
@echo " $$ git add CHANGELOG.txt bin/covernant setup.py"
@echo " $$ git commit -m \"Set version to 0.X.0\""
Expand Down
2 changes: 1 addition & 1 deletion bin/covernant
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ __author__ = "Konrad Foerstner <konrad@foerstner.org>"
__copyright__ = "2013-2017 by Konrad Foerstner <konrad@foerstner.org>"
__license__ = "ISC license"
__email__ = "konrad@foerstner.org"
__version__ = "0.3dev"
__version__ = "0.3.0"


def main():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='COVERnant',
version='0.2',
version='0.3.0',
packages=['covernantlib'],
author='Konrad U. Förstner',
author_email='konrad@foerstner.org',
Expand Down

0 comments on commit 588adaa

Please sign in to comment.