Version bump

This commit is contained in:
Maarten L. Hekkelman
2025-04-09 09:56:01 +02:00
parent 28dad5c0cc
commit ec1ded8087
4 changed files with 7 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
[![github CI](https://github.com/pdb-redo/dssp/actions/workflows/cmake-multi-platform.yml/badge.svg)](https://github.com/pdb-redo/dssp/actions)
[![GitHub License](https://img.shields.io/github/license/pdb-redo/dssp)](https://github.com/pdb-redo/dssp/LICENSE)
DSSP 4.4
DSSP 4.5
========
This is a rewrite of DSSP, now offering full mmCIF support. The difference

View File

@@ -1,3 +1,7 @@
Version 4.5
- Based on new libcifpp version 8
- Fixed Dockerfile
Version 4.4.11
- Write proper audit_conform records
- Updated dssp-extension.dic file to include version info

View File

@@ -1,6 +1,6 @@
# Use the version of the parent list file, if any. May need a fix someday.
if(NOT CMAKE_PARENT_LIST_FILE)
set(PROJECT_VERSION 4.4.8)
set(PROJECT_VERSION 4.5.0)
endif()
project(libdssp VERSION ${PROJECT_VERSION})

View File

@@ -110,7 +110,7 @@ TEST_CASE("ut_dssp")
std::string line_t, line_r;
CHECK((std::getline(test, line_t) and std::getline(reference, line_r)));
char kHeaderLineStart[] = "==== Secondary Structure Definition by the program DSSP, NKI version 4.4.5 ====";
char kHeaderLineStart[] = "==== Secondary Structure Definition by the program DSSP, NKI version 4.5.0 ====";
memcpy(kHeaderLineStart + 69, kVersionNumber, strlen(kVersionNumber));
CHECK(line_t.compare(0, std::strlen(kHeaderLineStart), kHeaderLineStart) == 0);