diff --git a/README.md b/README.md index 44ac20b..d3d39a2 100644 --- a/README.md +++ b/README.md @@ -306,6 +306,7 @@ Thanks a lot Mirza! This software is licensed under [MIT](./LICENSE). Be aware that the libraries and external programs are licensed separately (possibly under different licenses). ## Changes + - 1.1.2 <2021-11-10> Add retry download mechanic (#16, #31, #36), thanks to @LasKru - 1.1.1 <2019-11-05> Add online documentation - 1.1.0 <2019-11-03> Add author options. Fix line-ending bug (#23) - 1.0.0 <2019-07-15> Initial stable release diff --git a/bin/push_to_zenodo.py b/bin/push_to_zenodo.py index 6e2105d..eff8416 100644 --- a/bin/push_to_zenodo.py +++ b/bin/push_to_zenodo.py @@ -66,7 +66,7 @@ {'relation': 'cites', 'identifier':'https://doi.org/10.5281/zenodo.1462861'}, {'relation': 'cites', 'identifier':'https://doi.org/10.1186/1471-2105-12-385'} ], - 'version': '1.1.1' + 'version': '1.1.2' } } r = requests.put(zenodo_api_url+'deposit/depositions/%s' % deposition_id, params={'access_token': zenodo_token}, data=json.dumps(data), headers=headers) diff --git a/lib/BCdatabaser.pm b/lib/BCdatabaser.pm index 2ab0f24..5461d35 100644 --- a/lib/BCdatabaser.pm +++ b/lib/BCdatabaser.pm @@ -6,7 +6,7 @@ use File::Copy; use NCBI::Taxonomy; use FindBin; -our $VERSION = '1.1.1'; +our $VERSION = '1.1.2'; my $L = Log::Log4perl::get_logger();