Skip to content

Commit

Permalink
Release 6.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Apr 20, 2020
1 parent ce996ae commit e529d29
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Changes in IPython Parallel
===========================

6.2.5
-----

- Fix compatibility with Python 3.8
- Fix compatibility with recent dask

6.2.4
-----

Expand Down
4 changes: 2 additions & 2 deletions ipyparallel/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (6, 3, 0, 'dev')
__version__ = '.'.join(map(str, version_info))
version_info = (6, 2, 5)
__version__ = ".".join(map(str, version_info))

1 comment on commit e529d29

@basnijholt
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great, thanks! 🎉

Please sign in to comment.