Skip to content

Commit 66caf6b

Browse files
committed
tooling: Pin incbin dependency to 0.88.0
1 parent 5dd97d7 commit 66caf6b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

conanfile.py

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def requirements(self):
3939
self.requires("fmt/[~=8.1.1]")
4040
self.requires("inja/[~=3.3.0]")
4141
self.requires("nlohmann_json/[~=3.10.5]")
42+
self.requires("incbin/[~=0.88.0]@cloe/stable"),
4243
requires = [
4344
"cloe-runtime",
4445
"cloe-models",

runtime/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class CloeRuntime(ConanFile):
3434
"boost/[>=1.65.1]",
3535
"inja/[~=3.3.0]",
3636
"spdlog/[~=1.9.0]",
37-
"incbin/[~=1.74.0]@cloe/stable",
37+
"incbin/[~=0.88.0]@cloe/stable",
3838
]
3939

4040
_cmake = None

vendor/incbin/conanfile.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
class IncbinConan(ConanFile):
88
name = "incbin"
9-
# Note that the below version 1.X.Y is a fictional version, where X is the
9+
# Note that the below version 0.X.Y is a fictional version, where X is the
1010
# number of commits in the repository and Y is the latest iteration of our
1111
# changes. This is necessary because incbin doesn't have a version.
12-
version = "1.74.0"
12+
version = "0.88.0"
1313
license = "Unlicense"
1414
url = "https://github.com/graphitemaster/incbin"
1515
git_url = "https://github.com/graphitemaster/incbin.git"
16-
git_commit = "8cefe46d5380bf5ae4b4d87832d811f6692aae44"
16+
git_commit = "6e576cae5ab5810f25e2631f2e0b80cbe7dc8cbf"
1717
git_dir = "incbin"
1818
no_copy_source = True
1919
description = "Include binary files in C/C++"

0 commit comments

Comments
 (0)