From 13e1090a62656039591957434348b66ac403469c Mon Sep 17 00:00:00 2001 From: Guillaume EB Date: Tue, 16 Oct 2018 16:12:13 +0200 Subject: [PATCH 1/3] preparing release --- docs/source/changelog.rst | 12 ++++++++++++ docs/source/conf.py | 7 +++++++ 2 files changed, 19 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index c813078f..4c369231 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,18 @@ Changelog ========= +0.4.1 / 2018-10-?? +------------------ + +- Handle worker restart with clearer message (:pr:`138`) +- Better error handling on job submission failure (:pr:`146`) +- Fixed Python 2.7 error when starting workers (:pr:`155`) +- Better handling of extra scheduler options (:pr:`160`) +- Correct testing of Python 2.7 compatibility (:pr:`154`) +- Add ability to override python used to start workers (:pr:`167`) +- Internal improvements and edge cases handling (:pr:`97`) +- Possibility to specify a folder to store every job logs file (:pr:`145`) + 0.4.0 / 2018-09-06 ------------------ diff --git a/docs/source/conf.py b/docs/source/conf.py index dffc03ac..83e07b98 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -186,3 +186,10 @@ 'distributed': ('https://distributed.dask.org/en/stable/', 'https://distributed.dask.org/en/stable/objects.inv') } + +# Link to GitHub issues and pull requests using :pr:`1234` and :issue:`1234` +# syntax +extlinks = { + 'issue': ('https://github.com/dask/dask-jobqueue/issues/%s', 'GH#'), + 'pr': ('https://github.com/dask/dask-jobqueue/pull/%s', 'GH#') +} From fc71b6af4b38ac8d6cd27f30c4e5123ed5336821 Mon Sep 17 00:00:00 2001 From: Guillaume EB Date: Thu, 18 Oct 2018 13:17:34 +0000 Subject: [PATCH 2/3] upcomming release --- docs/source/changelog.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 4c369231..20d1beac 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -0.4.1 / 2018-10-?? +0.4.1 / 2018-10-18 ------------------ - Handle worker restart with clearer message (:pr:`138`) @@ -12,6 +12,7 @@ Changelog - Add ability to override python used to start workers (:pr:`167`) - Internal improvements and edge cases handling (:pr:`97`) - Possibility to specify a folder to store every job logs file (:pr:`145`) +- Require all cores on the same node for LSF (:pr:`177`) 0.4.0 / 2018-09-06 ------------------ From 930e5c5b485235a1006fc160cfed76ea612b5d08 Mon Sep 17 00:00:00 2001 From: Guillaume EB Date: Thu, 18 Oct 2018 13:30:15 +0000 Subject: [PATCH 3/3] Trigger notification