Skip to content

Commit

Permalink
Update version for 4.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel committed May 7, 2024
1 parent b4decff commit 0d6c904
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ cmake_policy(SET CMP0069 NEW) # LTO support
cmake_policy(SET CMP0091 NEW) # MSVC runtime support

if(MSVC)
add_compile_options("/wd4324") # Disable structure was padded due to alignment specifier
# Disable structure was padded due to alignment specifier
add_compile_options("/wd4324")
endif()

project(astcencoder VERSION 4.7.0)
project(astcencoder VERSION 4.8.0)

set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
6 changes: 4 additions & 2 deletions Docs/ChangeLog-4x.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,19 @@ clocked at 4.2 GHz, running `astcenc` using AVX2 and 6 threads.
<!-- ---------------------------------------------------------------------- -->
## 4.8.0

**Status:** In development ...
**Status:** May 2024

The 4.8.0 release is a minor maintenance release.

* **General:**
* **Bug fix:** Native builds on macOS will now correctly build for arm64 when
run outside of Rosetta on an Apple silicon device.
* **Bug fix:** Multiple small improvements to remove use of undefined
language behavior, to improve support for deployment using Emscripten.
* **Feature:** Builds using Clang can now build with undefined behavior
sanitizer by setting `-DASTCENC_UBSAN=ON` on the CMake configure line.
* **Feature:** Updated to Wuffs library 0.3.4, which ignores tRNS alpha chunks
for type 4 (LA) and 6 (RGBA) PNGs, to improve compatability with libpng.
for type 4 (LA) and 6 (RGBA) PNGs, to improve compatibility with libpng.

<!-- ---------------------------------------------------------------------- -->
## 4.7.0
Expand Down

0 comments on commit 0d6c904

Please sign in to comment.