diff --git a/README.md b/README.md index 384dacc..c8b4fd2 100644 --- a/README.md +++ b/README.md @@ -92,3 +92,12 @@ rm_galaxy_dl.args=rm_lib -f "${db.name}-${removedrelease}" "Homo sapiens genome ``` By default, relative file paths will be interpreted as relative to `${data.dir}/${dir.version}/${localrelease}` if these envionment variables are set. This can be disabled by using the --no-biomaj-env option. + +## Changes + +- 2.0.1 + - Fixed error with Galaxy 18.09 (also fixed in Galaxy: https://github.com/galaxyproject/galaxy/issues/7048) + - Fixed error while waiting for job completion + +- 2.0 + - Complete rewrite using data_manager_manual diff --git a/biomaj2galaxy/__init__.py b/biomaj2galaxy/__init__.py index c02345c..3d2aa27 100644 --- a/biomaj2galaxy/__init__.py +++ b/biomaj2galaxy/__init__.py @@ -13,7 +13,7 @@ standard_library.install_aliases() -__version__ = '2.0' +__version__ = '2.0.1' CONTEXT_SETTINGS = dict(auto_envvar_prefix='BM2G', help_option_names=['-h', '--help']) diff --git a/setup.py b/setup.py index 14c01cc..9ec3879 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="biomaj2galaxy", - version='2.0', + version='2.0.1', description="Command-line utility to assist in interconnecting BioMAJ (https://biomaj.genouest.org/) with Galaxy (http://galaxyproject.org/).", author="Anthony Bretaudeau", author_email="anthony.bretaudeau@inra.fr",