From ee51a18d9653b0ae3b14e0fca6f6d0ee2250d818 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Wed, 5 Jun 2024 11:27:00 +0200 Subject: [PATCH] all: prepare for release 0.37.0 Signed-off-by: deadprogram --- CHANGELOG.md | 5 +++++ README.md | 12 ++++++------ version.go | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5071ee6..7d4bede3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +0.37.0 +--- +* **all** + * Add support for OpenCV 4.10.0 + 0.36.1 --- * **bugfix** diff --git a/README.md b/README.md index c703364f..74956a9d 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ If you need static opencv libraries If it works correctly, at the end of the entire process, the following message should be displayed: - gocv version: 0.36.1 + gocv version: 0.37.0 opencv lib version: 4.10.0 That's it, now you are ready to use GoCV. @@ -178,7 +178,7 @@ If you need static opencv libraries If it works correctly, at the end of the entire process, the following message should be displayed: - gocv version: 0.36.1 + gocv version: 0.37.0 opencv lib version: 4.10.0-openvino cuda information: Device 0: "GeForce MX150" 2003Mb, sm_61, Driver/Runtime ver.10.0/10.0 @@ -240,7 +240,7 @@ Now you should be able to build or run any of the examples: The version program should output the following: - gocv version: 0.36.1 + gocv version: 0.37.0 opencv lib version: 4.10.0 #### Cleanup extra files @@ -341,7 +341,7 @@ The following make command should do everything to download and install OpenCV 4 If it works correctly, at the end of the entire process, the following message should be displayed: - gocv version: 0.36.1 + gocv version: 0.37.0 opencv lib version: 4.10.0 That's it, now you are ready to use GoCV. @@ -381,7 +381,7 @@ Now you should be able to build or run any of the examples: The version program should output the following: - gocv version: 0.36.1 + gocv version: 0.37.0 opencv lib version: 4.10.0 ### Custom Environment @@ -443,7 +443,7 @@ Now you should be able to build or run any of the command examples: The version program should output the following: - gocv version: 0.36.1 + gocv version: 0.37.0 opencv lib version: 4.10.0 That's it, now you are ready to use GoCV. diff --git a/version.go b/version.go index 44ecf56d..be57d0dd 100644 --- a/version.go +++ b/version.go @@ -7,7 +7,7 @@ package gocv import "C" // GoCVVersion of this package, for display purposes. -const GoCVVersion = "0.36.1" +const GoCVVersion = "0.37.0" // Version returns the current golang package version func Version() string {