Skip to content

Commit

Permalink
Prepare for 0.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Jan 25, 2023
1 parent b711950 commit 028c692
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
0.7 - 2023-01-25
================
- More examples have been added to demonstrate interconversion between
mmCIF and BinaryCIF, and to validate mmCIF files.
- A utility script ``util/make-mmcif.py`` has been added which can add
minimal ModelCIF-related tables to an mmCIF file, to add in deposition.
- The reader is now more robust when handling files that are not ModelCIF
compliant (#31).
- The ``exptl`` table is no longer written to output mmCIF files, to conform
with wwPDB's recommendation. Instead, the
``struct.pdbx_structure_determination_methodology`` data item denotes
that the model is computational (#29).

0.6 - 2022-08-03
================
- :class:`ihm.ChemComp` now allows for custom chemical components to be
Expand Down Expand Up @@ -60,4 +73,4 @@
- First stable release. This provides support for single-chain single-template
models using the ModelCIF extension dictionary, and will read and
write mmCIF and BinaryCIF files that are compliant with the PDBx and
ModelCIF dictionaries.
:class:`modelcif.alignment.HHblitsEValue`.
2 changes: 1 addition & 1 deletion modelcif/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import modelcif.data
import sys

__version__ = '0.6'
__version__ = '0.7'


class System(object):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from distutils.core import setup
import sys

VERSION = "0.6"
VERSION = "0.7"

copy_args = sys.argv[1:]

Expand Down

0 comments on commit 028c692

Please sign in to comment.