Skip to content

Commit

Permalink
Prepare for 0.34 release
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Aug 19, 2023
1 parent db29097 commit 579545a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 579545a

Please sign in to comment.