Skip to content

Commit 8bb638c

Browse files
committed
Prepare for 2.6 release
1 parent 04128b4 commit 8bb638c

File tree

6 files changed

+29
-4
lines changed

6 files changed

+29
-4
lines changed

ChangeLog.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2.6 - 2025-06-09
2+
================
3+
- The new :class:`ihm.License` and :class:`ihm.Disclaimer` classes
4+
allow describing how the data in the file can be used, and map to
5+
the ``pdbx_data_usage`` mmCIF table (#171).
6+
- Two :class:`ihm.Assembly` classes are now considered equal if they
7+
contain the same set of constituents, even if those constituents are
8+
in differing orders or are split differently into domains (#170).
9+
- The new :class:`ihm.format.ChangeFuncValueFilter` class allows modifying
10+
mmCIF values by passing them through an arbitrary Python function.
11+
- Checks for non-canonical atom names no longer use Ligand Expo to obtain
12+
CCD info, as it is being retired (#169).
13+
- :class:`ihm.parser.CIFParser` and :class:`ihm.parser.BinaryCIFParser`
14+
now return the same ``entity_source`` mapping that
15+
:class:`ihm.parser.PDBParser` does (#168).
16+
117
2.5 - 2025-04-25
218
================
319
- Assemblies are now checked at file-output time to ensure that each

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ include examples/*
44
include src/cmp.h
55
include src/ihm_format.h
66
include src/ihm_format.i
7-
include src/ihm_format_wrap_2.5.c
7+
include src/ihm_format_wrap_2.6.c

ihm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import collections
1919
from . import util
2020

21-
__version__ = '2.5'
21+
__version__ = '2.6'
2222

2323

2424
class __UnknownValue:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import sys
88
import os
99

10-
VERSION = "2.5"
10+
VERSION = "2.6"
1111

1212
copy_args = sys.argv[1:]
1313

util/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python-ihm (2.6-1~@CODENAME@) @CODENAME@; urgency=low
2+
3+
* python-ihm 2.6 release
4+
5+
-- Ben Webb <[email protected]> Mon, 09 Jun 2025 15:40:14 -0700
6+
17
python-ihm (2.5-1~@CODENAME@) @CODENAME@; urgency=low
28

39
* python-ihm 2.5 release

util/python-ihm.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Name: python3-ihm
22
License: MIT
33
Group: Applications/Engineering
4-
Version: 2.5
4+
Version: 2.6
55
Release: 1%{?dist}
66
Summary: Package for handling IHM mmCIF and BinaryCIF files
77
Packager: Ben Webb <[email protected]>
@@ -45,6 +45,9 @@ sed -i -e "s/install_requires=\['msgpack'\]/#/" setup.py
4545
%defattr(-,root,root)
4646

4747
%changelog
48+
* Mon Jun 09 2025 Ben Webb <[email protected]> 2.6-1
49+
- Update to latest upstream.
50+
4851
* Fri Apr 25 2025 Ben Webb <[email protected]> 2.5-1
4952
- Update to latest upstream.
5053

0 commit comments

Comments
 (0)