Skip to content

Commit a8075ac

Browse files
authored
Update to opencv 4.10.0 (#132)
* update to opencv 4.10.0 to fix window build on github runners * bump version number to 0.19.0
1 parent 25ffab8 commit a8075ac

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
env:
1414
BUILD_TYPE: Release
1515
SDL_VERSION: "release-2.30.3"
16-
OPENCV_VERSION: "4.9.0"
16+
OPENCV_VERSION: "4.10.0"
1717
CATCH_VERSION: "v3.6.0"
1818
SPDLOG_VERSION: "v1.14.1"
1919
EXIV2_VERSION: "v0.28.2"

misc/build/build-bullseye.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export BUILD_TYPE='Release'
22
export SDL_VERSION='release-2.30.3'
3-
# export OPENCV_VERSION='4.9.0'
3+
# export OPENCV_VERSION='4.10.0'
44
export CATCH_VERSION='v3.6.0'
55
export SPDLOG_VERSION='v1.14.1'
66
export EXIV2_VERSION='v0.28.2'

misc/build/build-macos.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export BUILD_TYPE='Release'
44
export SDL_VERSION='release-2.30.3'
5-
export OPENCV_VERSION='4.9.0'
5+
export OPENCV_VERSION='4.10.0'
66
export CATCH_VERSION='v3.6.0'
77
export SPDLOG_VERSION='v1.14.1'
88
export EXIV2_VERSION='v0.28.2'

misc/build/build-ubuntu-20.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export BUILD_TYPE='Release'
44
export SDL_VERSION='release-2.30.3'
5-
export OPENCV_VERSION='4.9.0'
5+
export OPENCV_VERSION='4.10.0'
66
export CATCH_VERSION='v3.6.0'
77
export SPDLOG_VERSION='v1.14.1'
88
export EXIV2_VERSION='v0.28.2'

misc/build/build-ubuntu-22.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export BUILD_TYPE='Release'
44
export SDL_VERSION='release-2.30.3'
5-
export OPENCV_VERSION='4.9.0'
5+
export OPENCV_VERSION='4.10.0'
66
export CATCH_VERSION='v3.6.0'
77
export SPDLOG_VERSION='v1.14.1'
88
export EXIV2_VERSION='v0.28.2'

misc/build/build-universal.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export BUILD_TYPE='Release'
22
export SDL_VERSION='release-2.30.3'
3-
export OPENCV_VERSION='4.9.0'
3+
export OPENCV_VERSION='4.10.0'
44
export CATCH_VERSION='v3.6.0'
55
export SPDLOG_VERSION='v1.14.1'
66
export EXIV2_VERSION='v0.28.2'

misc/build/build-windows-latest.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$env:BUILD_TYPE = 'Release'
44
$env:SDL_VERSION = 'release-2.30.3'
5-
$env:OPENCV_VERSION = '4.9.0'
5+
$env:OPENCV_VERSION = '4.10.0'
66
$env:CATCH_VERSION = 'v3.6.0'
77
$env:SPDLOG_VERSION = 'v1.14.1'
88
$env:EXIV2_VERSION = 'v0.28.2'

xpano/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
namespace xpano::version {
99

1010
constexpr int kMajor = 0;
11-
constexpr int kMinor = 18;
12-
constexpr int kPatch = 1;
11+
constexpr int kMinor = 19;
12+
constexpr int kPatch = 0;
1313

1414
using Triplet = std::tuple<int, int, int>;
1515

0 commit comments

Comments
 (0)