Skip to content

Commit

Permalink
Merge pull request #426 from choderalab/release-0.18.2
Browse files Browse the repository at this point in the history
Versioneer and improve netcdf opening robustness
  • Loading branch information
andrrizzi authored May 30, 2019
2 parents 7d83a1a + 27c43ce commit ce39205
Show file tree
Hide file tree
Showing 6 changed files with 597 additions and 163 deletions.
14 changes: 7 additions & 7 deletions docs/releasehistory.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Release History
***************

0.19.0
======

New features
------------
0.18.2 - Bugfix release
=======================

Bugfixes
--------
- Update build infrastructure to match `MolSSI cookiecutter <https://github.com/MolSSI/cookiecutter-cms>`_.
- A bug in the multistate samplers where``logsumexp`` was imported from ``scipy.misc`` (now in ``scipy.special``) was fixed
- A bug in the multistate samplers where``logsumexp`` was imported from ``scipy.misc`` (now in ``scipy.special``) was fixed (`#423 <https://github.com/choderalab/openmmtools/pull/423>`_).

Other
-----
- Update build infrastructure to match `MolSSI cookiecutter <https://github.com/MolSSI/cookiecutter-cms>`_ (`#424 <https://github.com/choderalab/openmmtools/pull/424>`_, `#426 <https://github.com/choderalab/openmmtools/pull/426>`_).

0.18.1 - Bugfix release
=======================
Expand Down
11 changes: 7 additions & 4 deletions openmmtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
"""

# Define global version.
from openmmtools import version
__version__ = version.version

from openmmtools import testsystems, integrators, alchemy, mcmc, states, cache, utils, constants, forces, forcefactories, storage, multistate

# Handle versioneer
from ._version import get_versions
versions = get_versions()
__version__ = versions['version']
__git_revision__ = versions['full-revisionid']
del get_versions, versions
Loading

0 comments on commit ce39205

Please sign in to comment.