Skip to content

Commit

Permalink
setting up next release
Browse files Browse the repository at this point in the history
  • Loading branch information
ghackebeil committed Jan 31, 2019
1 parent 768b907 commit 2ebf3d4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
Changelog
=========

0.3.1 - `master`_
0.5.0 - `master`_
~~~~~~~~~~~~~~~~~

* TODO

0.4.0 - 2019-01-31
~~~~~~~~~~~~~~~~~~

* Major redesign of node serialization, allowing for much
faster serial performance (especially with PyPy): The
`node.state` attribute can now be assigned anything
pickle-able. The `node.resize(...)` method should no
longer be called. (#5)
`node.state` attribute can now be assigned anything (must
pickle-able to work in the parallel case). The
`node.resize(...)` method should no longer be called. (#5)
* Adding `pybnb.config` to allow customizing serialization
of node state (e.g., use `dill` instead of `pickle`). See
online docs for more information.
Expand Down
2 changes: 1 addition & 1 deletion src/pybnb/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__title__ = 'pybnb'
__summary__ = 'A parallel branch-and-bound engine for Python'
__uri__ = 'https://github.com/ghackebeil/pybnb'
__version__ = '0.3.1'
__version__ = '0.4.0'
__author__ = 'Gabriel A. Hackebeil'
__email__ = '[email protected]'
__license__ = 'MIT'
Expand Down

0 comments on commit 2ebf3d4

Please sign in to comment.