From 800668cdd489cdd587225452001afd6305a8f4c9 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Wed, 31 Jan 2024 07:14:26 -0500 Subject: [PATCH] Update the version to 1.11.2 --- README.md | 22 ++++++++++++++++++---- include/vigra/config_version.hxx | 4 ++-- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7dedb6756..d8caaff23 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,21 @@ repository is at https://github.com/ukoethe/vigra What is VIGRA ------------- -VIGRA is a computer vision library that puts its main emphasis on flexible algorithms, because algorithms represent the principal know-how of this field. The library was consequently built using generic programming as introduced by Stepanov and Musser and exemplified in the C++ Standard Template Library. By writing a few adapters (image iterators and accessors) you can use VIGRA's algorithms on top of your data structures, within your environment. Alternatively, you can also use the data structures provided within VIGRA, which can be easily adapted to a wide range of applications. VIGRA's flexibility comes almost for free: Since the design uses compile-time polymorphism (templates), performance of the compiled program approaches that of a traditional, hand tuned, inflexible, solution. - - - +VIGRA is a computer vision library that puts its main emphasis on flexible +algorithms, because algorithms represent the principal know-how of this field. +The library was consequently built using generic programming as introduced by +Stepanov and Musser and exemplified in the C++ Standard Template Library. By +writing a few adapters (image iterators and accessors) you can use VIGRA's +algorithms on top of your data structures, within your environment. +Alternatively, you can also use the data structures provided within VIGRA, +which can be easily adapted to a wide range of applications. VIGRA's +flexibility comes almost for free: Since the design uses compile-time +polymorphism (templates), performance of the compiled program approaches that +of a traditional, hand tuned, inflexible, solution. + + +Making a New Release +-------------------- + +1. Update the version in the header file. +2. Create a tag on the main branch. diff --git a/include/vigra/config_version.hxx b/include/vigra/config_version.hxx index 24205ab0f..957d1f1e9 100644 --- a/include/vigra/config_version.hxx +++ b/include/vigra/config_version.hxx @@ -39,7 +39,7 @@ #define VIGRA_VERSION_MAJOR 1 #define VIGRA_VERSION_MINOR 11 - #define VIGRA_VERSION_PATCH 1 - #define VIGRA_VERSION "1.11.1" + #define VIGRA_VERSION_PATCH 2 + #define VIGRA_VERSION "1.11.2" #endif /* VIGRA_CONFIG_VERSION_HXX */