Skip to content

Commit

Permalink
v201 release (#229)
Browse files Browse the repository at this point in the history
* v201 release
  • Loading branch information
whitead authored Aug 12, 2020
1 parent 2d76879 commit 5e51658
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions htf/simmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def __init__(
# check if overridden
if MolSimModel.mol_compute == self.__class__.mol_compute:
raise AttributeError(
'You must implement compute method in subclass')
'You must implement mol_compute method in subclass of MolSimModel')

# currently not used, because compute, which calls this, will be compiled
input_signature = [
Expand All @@ -269,7 +269,7 @@ def __init__(
'use only SimModel or increase your argument count to mol_compute')
except AttributeError:
raise AttributeError(
'SimModel child class must implement compute method, '
'MolSimModel child class must implement mol_compute method, '
'and should not implement call')

def mol_compute(self, nlist, positions, mol_nlist, mol_positions, box):
Expand Down
2 changes: 1 addition & 1 deletion htf/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0'
__version__ = '2.0.1'
12 changes: 9 additions & 3 deletions sphinx-docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
Change Log
==========

v2.0
--------
v2.0.1 (2020-08-11)
--------------------

*Breaking Changes*

- Hoomd 2.6 or above is now required for GPU

v2.0 (2020-08-08)
-------------------

*New Features*

Expand Down

0 comments on commit 5e51658

Please sign in to comment.