Skip to content

Commit

Permalink
[fastgltf] Update to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spnda committed Mar 3, 2024
1 parent 56a3277 commit 290d63a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions recipes/fastgltf/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"0.7.1":
url: "https://github.com/spnda/fastgltf/archive/refs/tags/v0.7.1.tar.gz"
sha256: "44bcb025dd5cd480236a3bc7a3f8c9a708a801ed773b7859677440d22e0e1e7c"
"0.7.0":
url: "https://github.com/spnda/fastgltf/archive/refs/tags/v0.7.0.tar.gz"
sha256: "1d0af69db938fd81dd34ea51f99e37f0023852c93befe63e23f9e55abd4a18ec"
Expand Down
6 changes: 5 additions & 1 deletion recipes/fastgltf/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ def layout(self):
cmake_layout(self, src_folder='src')

def requirements(self):
self.requires("simdjson/3.2.0")
# See https://github.com/spnda/fastgltf/commit/aa90dfac290584f35f47dd7c1634f23d376a7207
if Version(self.version) >= "0.6.0":
self.requires("simdjson/3.7.0")
else:
self.requires("simdjson/3.2.1")

def validate(self):
if self.settings.get_safe("compiler.cppstd"):
Expand Down
2 changes: 2 additions & 0 deletions recipes/fastgltf/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"0.7.1":
folder: all
"0.7.0":
folder: all
"0.6.1":
Expand Down

0 comments on commit 290d63a

Please sign in to comment.