Skip to content

Commit 4950604

Browse files
committed
Prepare for 2.3 release
1 parent b641dbf commit 4950604

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.3 - 2025-03-13
2+
================
3+
- The C-accelerated BinaryCIF parser now supports interval quantization
4+
encoding and a wider range of data types.
5+
- ``make_mmcif`` now has a new ``--histidines`` option to convert any
6+
non-standard histidine names to HIS (#164).
7+
- Bugfix: don't change name or description of the complete assembly
8+
in ``make_mmcif``.
9+
- Bugfix: if :class:`ihm.reference.SeqDif` is used to annotate an
10+
insertion or deletion, don't erroneously claim the alignment is incorrect.
11+
112
2.2 - 2025-02-13
213
================
314
- The C-accelerated BinaryCIF parser now supports a wider range of data types.

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.2.c
7+
include src/ihm_format_wrap_2.3.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.2'
20+
__version__ = '2.3'
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.2"
10+
VERSION = "2.3"
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.3-1~@CODENAME@) @CODENAME@; urgency=low
2+
3+
* python-ihm 2.3 release
4+
5+
-- Ben Webb <ben@salilab.org> Thu, 13 Mar 2025 19:57:57 -0700
6+
17
python-ihm (2.2-1~@CODENAME@) @CODENAME@; urgency=low
28

39
* python-ihm 2.2 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.2
4+
Version: 2.3
55
Release: 1%{?dist}
66
Summary: Package for handling IHM mmCIF and BinaryCIF files
77
Packager: Ben Webb <ben@salilab.org>
@@ -36,6 +36,9 @@ sed -i -e "s/install_requires=\['msgpack'\]/#/" setup.py
3636
%defattr(-,root,root)
3737

3838
%changelog
39+
* Thu Mar 13 2025 Ben Webb <ben@salilab.org> 2.3-1
40+
- Update to latest upstream.
41+
3942
* Thu Feb 13 2025 Ben Webb <ben@salilab.org> 2.2-1
4043
- Update to latest upstream.
4144

0 commit comments

Comments
 (0)