Skip to content

Commit c7fcb36

Browse files
committed
Update for 1.7 release
1 parent 1838c05 commit c7fcb36

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

ChangeLog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
HEAD
2-
====
1+
1.7 - 2024-10-22
2+
================
33
- Sanity checks when writing out a file can now be disabled if desired,
44
using the new ``check`` argument to :func:`ihm.dumper.write` (#153).
55
- Data that have been split over multiple mmCIF or BinaryCIF files can now

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ include LICENSE
33
include examples/*
44
include src/ihm_format.h
55
include src/ihm_format.i
6-
include src/ihm_format_wrap_1.6.c
6+
include src/ihm_format_wrap_1.7.c

ihm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import json
2121
from . import util
2222

23-
__version__ = '1.6'
23+
__version__ = '1.7'
2424

2525

2626
class __UnknownValue(object):

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 = "1.6"
10+
VERSION = "1.7"
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 (1.7-1~@CODENAME@) @CODENAME@; urgency=low
2+
3+
* python-ihm 1.7 release
4+
5+
-- Ben Webb <[email protected]> Tue, 22 Oct 2024 23:02:03 -0700
6+
17
python-ihm (1.6-1~@CODENAME@) @CODENAME@; urgency=low
28

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

3838
%changelog
39+
* Thu Oct 22 2024 Ben Webb <[email protected]> 1.7-1
40+
- Update to latest upstream.
41+
3942
* Fri Sep 27 2024 Ben Webb <[email protected]> 1.6-1
4043
- Update to latest upstream.
4144

0 commit comments

Comments
 (0)