Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CDM Task Service Client Release Notes

# 0.2.2 (26/01/12)

* Added a method to cancel a job.
* Added a method to get a job's container exit codes.
* Added methods to stream a job container's logs.
* Added the declobber optional argument to the job submit method.
* Added a method to list available images.
* Added a method to list jobs.
* Added a method to get compute site status.
* Added a method to get user data, in particular what S3 paths are available for reading and
writing data.
* Updated documentation for clarity

# 0.2.1 (25/10/27)

* Update the client to handle event importer updates for jobs where no importer is configured
Expand Down
2 changes: 1 addition & 1 deletion src/cdmtaskserviceclient/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# TODO TEST logging

__version__ = "0.2.1"
__version__ = "0.2.2"


_EVENT_COMPLETION_KEYS = {
Expand Down
2 changes: 1 addition & 1 deletion test/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# TODO TEST add a test for the case where an image requires refdata but staging isn't complete.
# Pretty edgy case and needs a bit of setup

VERSION = "0.2.1"
VERSION = "0.2.2"


def test_version():
Expand Down