Skip to content

Commit

Permalink
Merge pull request #12 from biocore/091-dev
Browse files Browse the repository at this point in the history
REL: updated to 0.9.1-dev
  • Loading branch information
jairideout committed May 22, 2015
2 parents 5cce55d + 583391c commit aa40fd4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# burrito changelog

## Version 0.9.1-dev (changes since 0.9.1 go here)

## Version 0.9.1 (2015-05-22)

* Updated default temporary directory from ``/tmp`` to python's ``tempfile.gettempdir()``. This should address many of the issues with temporary files being written to ``/tmp``, which sometimes doesn't exist, doesn't provide a lot of storage, or is not shared across cluster nodes. It is still possible that individual burrito fillings (i.e., ``CommandLineApplication`` derived classes) can hard code ``/tmp``, so care should be taken when writing those derived classes to avoid that.
Expand Down
2 changes: 1 addition & 1 deletion burrito/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------

__version__ = "0.9.1"
__version__ = "0.9.1-dev"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from setuptools import find_packages, setup

__version__ = "0.9.1"
__version__ = "0.9.1-dev"

classes = """
Development Status :: 5 - Production/Stable
Expand Down

0 comments on commit aa40fd4

Please sign in to comment.