diff --git a/CHANGELOG.md b/CHANGELOG.md index 23fe6517..b5071ee6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +0.36.1 +--- +* **bugfix** + * Correct error in CUDA function signature +* **test** + * correct CUDA tests +* **docker** + * add test image for CUDA 12 + 0.36.0 --- * **all** diff --git a/LICENSE.txt b/LICENSE.txt index 3263f9e9..a02169bd 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2017-2022 The Hybrid Group and friends +Copyright (c) 2017-2024 The Hybrid Group and friends Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 86f2e877..7b5c698a 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.0 + gocv version: 0.36.1 opencv lib version: 4.9.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.0 + gocv version: 0.36.1 opencv lib version: 4.9.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.0 + gocv version: 0.36.1 opencv lib version: 4.9.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.0 + gocv version: 0.36.1 opencv lib version: 4.9.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.0 + gocv version: 0.36.1 opencv lib version: 4.9.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.0 + gocv version: 0.36.1 opencv lib version: 4.9.0 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 ## License -Licensed under the Apache 2.0 license. Copyright (c) 2017-2021 The Hybrid Group. +Licensed under the Apache 2.0 license. Copyright (c) 2017-2024 The Hybrid Group. Logo generated by GopherizeMe - https://gopherize.me diff --git a/version.go b/version.go index 6758e8bf..44ecf56d 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.0" +const GoCVVersion = "0.36.1" // Version returns the current golang package version func Version() string {