Skip to content

Commit

Permalink
bump version to 1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Aug 30, 2016
1 parent 0fbafe7 commit 2ffe5bc
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
2 changes: 1 addition & 1 deletion distributed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
pass


__version__ = '1.12.0'
__version__ = '1.12.1'
38 changes: 38 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
1.12.1
------

This release is largely a bugfix release, recovering from the previous large
refactor.

* Fixes from previous refactor
* Ensure idempotence across clients
* Stress test losing scattered data permanently
*
* IPython fixes
* Add `start_ipython_scheduler` method to Executor
* Add `%remote` magic for workers
* Clean up code and tests
* Pool connects to maintain reuse and reduce number of open file handles
* Re-implement work stealing algorithm
* Support cancellation of tuple keys, such as occur in dask.arrays
* Start synchronizing against worker data that may be superfluous
* Improve bokeh plots styling
* Add memory plot tracking number of bytes
* Make the progress bars more compact and align colors
* Add workers/ page with workers table, stacks/processing plot, and memory
* Add this release notes document


1.12.0
------

This release was largely a refactoring release. Internals were changed
significantly without many new features.

* Major refactor of the scheduler to use transitions system
* Tweak protocol to traverse down complex messages in search of large
bytestrings
* Add dask-submit and dask-remote
* Refactor HDFS writing to align with changes in the dask library
* Executor reconnects to scheduler on broken connection or failed scheduler
* Support sklearn.external.joblib as well as normal joblib
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
requires.append('singledispatch')

setup(name='distributed',
version='1.12.0',
version='1.12.1',
description='Distributed computing',
url='http://distributed.readthedocs.io/en/latest/',
maintainer='Matthew Rocklin',
Expand Down

0 comments on commit 2ffe5bc

Please sign in to comment.