From 579545a364744945c08186e8feca10258c73fefd Mon Sep 17 00:00:00 2001 From: deadprogram Date: Fri, 18 Aug 2023 12:34:03 +0200 Subject: [PATCH] Prepare for 0.34 release Signed-off-by: deadprogram --- CHANGELOG.md | 15 +++++++++++++++ README.md | 12 ++++++------ version.go | 2 +- 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1284d0cc..7065f225 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +0.34.0 +--- +* **all** + * Add support for OpenCV 4.8.0 + * Add support for Go 1.21 +* **build** + * update all builds to use OpenCV 4.8.0 +* **core** + * Adds support for PCACompute +* **docker** + * add dockerfile for OpenCV static build +* **make** + * Leave one processor free instead of using all of them when building + + 0.33.0 --- * **bugfix** diff --git a/README.md b/README.md index d712b6a4..3e89f3e5 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.33.0 + gocv version: 0.34.0 opencv lib version: 4.8.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.33.0 + gocv version: 0.34.0 opencv lib version: 4.8.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.33.0 + gocv version: 0.34.0 opencv lib version: 4.8.0 #### Cleanup extra files @@ -338,7 +338,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.33.0 + gocv version: 0.34.0 opencv lib version: 4.8.0 That's it, now you are ready to use GoCV. @@ -377,7 +377,7 @@ Now you should be able to build or run any of the examples: The version program should output the following: - gocv version: 0.33.0 + gocv version: 0.34.0 opencv lib version: 4.8.0 ### Custom Environment @@ -439,7 +439,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.33.0 + gocv version: 0.34.0 opencv lib version: 4.8.0 That's it, now you are ready to use GoCV. diff --git a/version.go b/version.go index 214c88dc..85eaab07 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.33.0" +const GoCVVersion = "0.34.0" // Version returns the current golang package version func Version() string {