From c03b53e27cff58bd27495c9fda578aa96f8c4a20 Mon Sep 17 00:00:00 2001 From: Dan Blanchard Date: Tue, 23 Jul 2013 11:30:07 -0400 Subject: [PATCH] Bumped version up to 0.9.7 --- README.rst | 16 +++++++++++++--- gridmap/__init__.py | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index af3f57d..fdc55e4 100644 --- a/README.rst +++ b/README.rst @@ -42,15 +42,25 @@ License Changelog ~~~~~~~~~ + +- 0.9.7 + + + No longer dies with InvalidJobException when failing to retrieve job + metadata from DRMAA service. + + Now print all exceptions encountered for jobs submitted instead of just + exiting after first one. + + Die via exception instead of sys.exit when there were problems with some + of the submitted jobs. + - 0.9.6 - + + Fixed bug where jobs were being aborted before they ran. - 0.9.5 - + + Fixed bug where GRID_MAP_USE_MEM_FREE would only be interpretted as true if spelled 'True'. + Added documentation describing how to override constants. - + - 0.9.4 + Added support for overriding the default queue and other constants via environment variables. For example, to change the default queue, just set the environment variable GRID_MAP_DEFAULT_QUEUE. diff --git a/gridmap/__init__.py b/gridmap/__init__.py index 3a5bc7a..07744ad 100644 --- a/gridmap/__init__.py +++ b/gridmap/__init__.py @@ -53,7 +53,7 @@ # Version info -__version__ = '0.9.6' +__version__ = '0.9.7' VERSION = tuple(int(x) for x in __version__.split('.')) # For * imports