diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cc8d0e..91d46b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [1.1.5] - 2026-05-20 +### Fixed +- WebAssembly build: route zlib through the Emscripten port (`-sUSE_ZLIB=1`) instead of `find_package(ZLIB REQUIRED)`, which cannot locate libz when cross-compiling to WASM. Native builds are unchanged. + +### Added +- Top-level `Makefile` wrapper around the CMake build, flattening the resulting binaries into `bin/`. Lets external tooling that expects a Makefile (e.g. BioChef Hub's native builder) build VCFX without reaching for CMake directly. + ## [1.1.4] - 2025-12-18 ### Added - GATK-compatible validation checks for VCFX_validator: diff --git a/CITATION.cff b/CITATION.cff index 6d8f3fe..d5d2293 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,7 +1,7 @@ cff-version: 1.2.0 message: "If you use this software, please cite it." title: "VCFX: A Minimalist, Modular Toolkit for Streamlined Variant Analysis" -version: "1.1.4" +version: "1.1.5" authors: - family-names: Silva given-names: Jorge Miguel diff --git a/CMakeLists.txt b/CMakeLists.txt index 4908a32..30008af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.14) # Set version information set(VCFX_VERSION_MAJOR 1) set(VCFX_VERSION_MINOR 1) -set(VCFX_VERSION_PATCH 4) +set(VCFX_VERSION_PATCH 5) set(VCFX_VERSION "${VCFX_VERSION_MAJOR}.${VCFX_VERSION_MINOR}.${VCFX_VERSION_PATCH}") add_compile_definitions(VCFX_VERSION="${VCFX_VERSION}")