Skip to content

Commit 0d6c904

Browse files
committed
Update version for 4.8.0 release
1 parent b4decff commit 0d6c904

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CMakeLists.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ cmake_policy(SET CMP0069 NEW) # LTO support
2121
cmake_policy(SET CMP0091 NEW) # MSVC runtime support
2222

2323
if(MSVC)
24-
add_compile_options("/wd4324") # Disable structure was padded due to alignment specifier
24+
# Disable structure was padded due to alignment specifier
25+
add_compile_options("/wd4324")
2526
endif()
2627

27-
project(astcencoder VERSION 4.7.0)
28+
project(astcencoder VERSION 4.8.0)
2829

2930
set(CMAKE_CXX_STANDARD 14)
3031
set(CMAKE_CXX_STANDARD_REQUIRED ON)

Docs/ChangeLog-4x.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ clocked at 4.2 GHz, running `astcenc` using AVX2 and 6 threads.
99
<!-- ---------------------------------------------------------------------- -->
1010
## 4.8.0
1111

12-
**Status:** In development ...
12+
**Status:** May 2024
1313

1414
The 4.8.0 release is a minor maintenance release.
1515

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

2426
<!-- ---------------------------------------------------------------------- -->
2527
## 4.7.0

0 commit comments

Comments
 (0)