Skip to content

Commit

Permalink
Prepare for 1.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Dec 4, 2024
1 parent 4b19b06 commit 3482bec
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 4 additions & 1 deletion tools/RMF.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 <[email protected]> 1.7.0-1
- Update for 1.7.0 release.

* Mon May 13 2024 Ben Webb <[email protected]> 1.6.1-1
- Update for 1.6.1 release.

Expand Down
6 changes: 6 additions & 0 deletions tools/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
rmf (1.7.0-1~@CODENAME@) @CODENAME@; urgency=low

* RMF 1.7.0 release

-- IMP Developers <[email protected]> Wed, 04 Dec 2024 10:04:14 -0800

rmf (1.6.1-1~@CODENAME@) @CODENAME@; urgency=low

* RMF 1.6.1 release
Expand Down

0 comments on commit 3482bec

Please sign in to comment.