Skip to content

Commit 85dc4c7

Browse files
committed
Release 0.36.1
Signed-off-by: deadprogram <[email protected]>
1 parent 8197a71 commit 85dc4c7

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.36.1
2+
---
3+
* **bugfix**
4+
* Correct error in CUDA function signature
5+
* **test**
6+
* correct CUDA tests
7+
* **docker**
8+
* add test image for CUDA 12
9+
110
0.36.0
211
---
312
* **all**

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017-2022 The Hybrid Group and friends
1+
Copyright (c) 2017-2024 The Hybrid Group and friends
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ If you need static opencv libraries
152152

153153
If it works correctly, at the end of the entire process, the following message should be displayed:
154154

155-
gocv version: 0.36.0
155+
gocv version: 0.36.1
156156
opencv lib version: 4.9.0
157157

158158
That's it, now you are ready to use GoCV.
@@ -178,7 +178,7 @@ If you need static opencv libraries
178178

179179
If it works correctly, at the end of the entire process, the following message should be displayed:
180180

181-
gocv version: 0.36.0
181+
gocv version: 0.36.1
182182
opencv lib version: 4.9.0-openvino
183183
cuda information:
184184
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:
240240

241241
The version program should output the following:
242242

243-
gocv version: 0.36.0
243+
gocv version: 0.36.1
244244
opencv lib version: 4.9.0
245245

246246
#### Cleanup extra files
@@ -341,7 +341,7 @@ The following make command should do everything to download and install OpenCV 4
341341

342342
If it works correctly, at the end of the entire process, the following message should be displayed:
343343

344-
gocv version: 0.36.0
344+
gocv version: 0.36.1
345345
opencv lib version: 4.9.0
346346

347347
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:
381381

382382
The version program should output the following:
383383

384-
gocv version: 0.36.0
384+
gocv version: 0.36.1
385385
opencv lib version: 4.9.0
386386

387387
### Custom Environment
@@ -443,7 +443,7 @@ Now you should be able to build or run any of the command examples:
443443

444444
The version program should output the following:
445445

446-
gocv version: 0.36.0
446+
gocv version: 0.36.1
447447
opencv lib version: 4.9.0
448448

449449
That's it, now you are ready to use GoCV.
@@ -591,6 +591,6 @@ This package was inspired by the original https://github.com/go-opencv/go-opencv
591591

592592
## License
593593

594-
Licensed under the Apache 2.0 license. Copyright (c) 2017-2021 The Hybrid Group.
594+
Licensed under the Apache 2.0 license. Copyright (c) 2017-2024 The Hybrid Group.
595595

596596
Logo generated by GopherizeMe - https://gopherize.me

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package gocv
77
import "C"
88

99
// GoCVVersion of this package, for display purposes.
10-
const GoCVVersion = "0.36.0"
10+
const GoCVVersion = "0.36.1"
1111

1212
// Version returns the current golang package version
1313
func Version() string {

0 commit comments

Comments
 (0)