Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
Loading