From 3482beccf1c2e48d655b798a33b767d01a94bcfb Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Tue, 3 Dec 2024 21:07:57 -0800 Subject: [PATCH] Prepare for 1.7.0 release --- CMakeLists.txt | 4 ++-- ChangeLog.md | 6 ++++++ tools/RMF.spec | 5 ++++- tools/debian/changelog | 6 ++++++ 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a8e9c5a..c2a05fef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -145,8 +145,8 @@ set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib) # Version information set (RMF_VERSION_MAJOR 1) -set (RMF_VERSION_MINOR 6) -set (RMF_VERSION_MICRO 1) +set (RMF_VERSION_MINOR 7) +set (RMF_VERSION_MICRO 0) math (EXPR RMF_VERSION "${RMF_VERSION_MAJOR} * 100000 + ${RMF_VERSION_MINOR} * 100 + ${RMF_VERSION_MICRO}") set(RMF_SOVERSION "${RMF_VERSION_MAJOR}.${RMF_VERSION_MINOR}" CACHE INTERNAL "" FORCE) diff --git a/ChangeLog.md b/ChangeLog.md index aeb3f063..7675efa5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,12 @@ Change Log {#changelog} ========== +# 1.7.0 - 2024-12-04 # {#changelog_1_7_0} +- Python 2 is no longer supported; the minimum supported Python version is 3.6. +- CMake 2 is no longer supported; the minimum supported CMake version is 3.14. +- RMF::decorator::Chain can now store the mmCIF asym ID, which need not be + the same as the (author-provided) chain ID. + # 1.6.1 - 2024-05-13 # {#changelog_1_6_1} - .deb packages for RMF for Ubuntu are now provided via the [Ubuntu PPA](https://launchpad.net/~salilab/+archive/ubuntu/ppa) mechanism. diff --git a/tools/RMF.spec b/tools/RMF.spec index 1006c788..913855bd 100644 --- a/tools/RMF.spec +++ b/tools/RMF.spec @@ -1,5 +1,5 @@ Name: RMF -Version: 1.6.1 +Version: 1.7.0 Release: 1%{?dist} License: Apache 2.0 Summary: Library to support reading and writing of RMF files @@ -83,6 +83,9 @@ python3 -c "import RMF; assert(hasattr(RMF, 'get_all_global_coordinates'))" %{_libdir}/libRMF*.so %changelog +* Wed Dec 04 2024 Ben Webb 1.7.0-1 +- Update for 1.7.0 release. + * Mon May 13 2024 Ben Webb 1.6.1-1 - Update for 1.6.1 release. diff --git a/tools/debian/changelog b/tools/debian/changelog index 25ea3634..50703dec 100644 --- a/tools/debian/changelog +++ b/tools/debian/changelog @@ -1,3 +1,9 @@ +rmf (1.7.0-1~@CODENAME@) @CODENAME@; urgency=low + + * RMF 1.7.0 release + + -- IMP Developers Wed, 04 Dec 2024 10:04:14 -0800 + rmf (1.6.1-1~@CODENAME@) @CODENAME@; urgency=low * RMF 1.6.1 release