From 88be51a5a6e987ad6a20cab8f4b200cd9dcc7c6a Mon Sep 17 00:00:00 2001 From: Gerardo Tauriello <gerardo.tauriello@unibas.ch> Date: Fri, 10 Jan 2020 19:21:56 +0100 Subject: [PATCH] Update version to 3.2.0 --- CHANGELOG.txt | 2 +- CMakeLists.txt | 8 ++++---- doc/source/conf.py | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index cc27ac4..08aae7b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,4 @@ -Changes in Release 3.X.0 +Changes in Release 3.2.0 -------------------------------------------------------------------------------- * Added automated testing of all example scripts in the documentation diff --git a/CMakeLists.txt b/CMakeLists.txt index 447414c..ba62053 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,9 +3,9 @@ #------------------------------------------------------------------------------- cmake_minimum_required(VERSION 2.6.4 FATAL_ERROR) -set (QMEAN_VERSION_MAJOR 3) -set (QMEAN_VERSION_MINOR 1) -set (QMEAN_VERSION_PATCH 0) +set (QMEAN_VERSION_MAJOR 3) +set (QMEAN_VERSION_MINOR 2) +set (QMEAN_VERSION_PATCH 0) set (QMEAN_VERSION_STRING ${QMEAN_VERSION_MAJOR}.${QMEAN_VERSION_MINOR}.${QMEAN_VERSION_PATCH} ) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake_support) @@ -61,7 +61,7 @@ string(REPLACE "." ";" _python_version_list ${PYTHON_VERSION}) list(GET _python_version_list 0 PYTHON_VERSION_MAJOR) list(GET _python_version_list 1 PYTHON_VERSION_MINOR) -find_package(OPENSTRUCTURE 1.10.0 REQUIRED +find_package(OPENSTRUCTURE 1.11.0 REQUIRED COMPONENTS mol seq seq_alg mol_alg conop) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY) diff --git a/doc/source/conf.py b/doc/source/conf.py index 0b92253..cd58ae8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -63,16 +63,16 @@ master_doc = 'index' # General information about the project. project = u'QMEAN' -copyright = u'2016-2019, Gabriel Studer' +copyright = u'2016-2020, Gabriel Studer' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -release = '3.1.0' +release = '3.2.0' # The full version, including alpha/beta/rc tags. -release = '3.1.0' +release = '3.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- GitLab