Skip to content

Commit 84316fc

Browse files
committed
Prepare for 2.5 release
1 parent d4c45e6 commit 84316fc

File tree

6 files changed

+24
-4
lines changed

6 files changed

+24
-4
lines changed

ChangeLog.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2.5 - 2025-04-25
2+
================
3+
- Assemblies are now checked at file-output time to ensure that each
4+
asym referenced in an assembly is represented by atoms and/or spheres
5+
in at least one model (#165).
6+
- ``make_mmcif`` has a new ``--check_atom_names`` option which, if set,
7+
will check for any non-canonical atom names (#166).
8+
- ``pip install`` should no longer fail to install if the C extension
9+
module cannot be built; it will fall back to use the slower pure Python
10+
implementation.
11+
112
2.4 - 2025-03-25
213
================
314
- Add support for fits of model groups or ensembles to cross-links

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.4.c
7+
include src/ihm_format_wrap_2.5.c

ihm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import json
1818
from . import util
1919

20-
__version__ = '2.4'
20+
__version__ = '2.5'
2121

2222

2323
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.4"
10+
VERSION = "2.5"
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.5-1~@CODENAME@) @CODENAME@; urgency=low
2+
3+
* python-ihm 2.5 release
4+
5+
-- Ben Webb <[email protected]> Fri, 25 Apr 2025 20:41:22 -0700
6+
17
python-ihm (2.4-1~@CODENAME@) @CODENAME@; urgency=low
28

39
* python-ihm 2.4 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.4
4+
Version: 2.5
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+
* Fri Apr 25 2025 Ben Webb <[email protected]> 2.5-1
49+
- Update to latest upstream.
50+
4851
* Tue Mar 25 2025 Ben Webb <[email protected]> 2.4-1
4952
- Update to latest upstream.
5053

0 commit comments

Comments
 (0)