Skip to content

Commit

Permalink
Update the version to 1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk committed Mar 26, 2024
1 parent d4250a0 commit 800668c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions include/vigra/config_version.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit 800668c

Please sign in to comment.