Skip to content

Commit

Permalink
Bump version to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spnda committed Mar 2, 2024
1 parent 4d32070 commit 84aa81c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER_EQUAL "3.24"
cmake_policy(SET CMP0135 NEW)
endif()

project(fastgltf VERSION 0.7.0 LANGUAGES C CXX)
project(fastgltf VERSION 0.7.1 LANGUAGES C CXX)

option(FASTGLTF_USE_CUSTOM_SMALLVECTOR "Uses a custom SmallVector type optimised for small arrays" OFF)
option(FASTGLTF_ENABLE_TESTS "Enables test targets for fastgltf" OFF)
Expand Down Expand Up @@ -53,7 +53,7 @@ else()
target_link_libraries(fastgltf PUBLIC simdjson::simdjson)
else()
# Download and configure simdjson
set(SIMDJSON_TARGET_VERSION "3.6.4")
set(SIMDJSON_TARGET_VERSION "3.7.0")
set(SIMDJSON_DL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/deps/simdjson")
file(MAKE_DIRECTORY ${SIMDJSON_DL_DIR})

Expand Down
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ Changelog

To view the full changelogs for each release please see the `GitHub releases <https://github.com/spnda/fastgltf/releases>`_.

0.7.1
=====
- Add: Support for **glTF extras**
- Add: ``KHR_materials_variants``
- Fix: Inline ``deserializeComponent`` template specializations (#47)
- Fix #48: Allow exporting ``ByteView`` in GLB & catch file write errors
- Fix: Support ``KHR_materials_dispersion`` when exporting
- Fix: Decode percents when loading local files
- Fix: Set ``MimeType::None`` in all sources
- Fix: Use correct error variable when parsing gpu instancing extension
- Fix: Make sure gltf buffer is valid before determining type
- Fix: Allow the GLB BIN chunk to be empty

0.7.0
=====
- Add: glTF Exporter (`#33 <https://github.com/spnda/fastgltf/pull/33>`_)
Expand Down
2 changes: 1 addition & 1 deletion include/fastgltf/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
#define FASTGLTF_QUOTE(x) FASTGLTF_QUOTE_Q(x)

// fastgltf version string. Use FASTGLTF_QUOTE to stringify.
#define FASTGLTF_VERSION 0.7.0
#define FASTGLTF_VERSION 0.7.1

namespace fastgltf {
#if defined(FASTGLTF_USE_64BIT_FLOAT) && FASTGLTF_USE_64BIT_FLOAT
Expand Down

0 comments on commit 84aa81c

Please sign in to comment.