From 312a1c5427c5bf1043c2da24756ef9c8f91073ba Mon Sep 17 00:00:00 2001 From: Kamila Szewczyk Date: Wed, 16 Oct 2024 02:00:24 +0200 Subject: [PATCH] v0.3 --- ChangeLog | 18 ++++++++++++++++++ Makefile.am | 2 +- NEWS | 6 ++++++ configure.ac | 2 +- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f2eb4b8..b718cb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,23 @@ +2024-10-16 Kamila Szewczyk + + to-do: strike down some performance-related goals + + avx512 version in xpar-x86_64.asm + + fastest rse32 on the west + + Add update-ChangeLog to the release action. + +2024-10-15 mrbenjadmin + + fix build on linux aarch64 gcc platforms + 2024-10-15 Kamila Szewczyk + update the roadmap + + v0.2 + aarch64-machine-specific code 2024-10-14 Kamila Szewczyk diff --git a/Makefile.am b/Makefile.am index 8726d34..52b69a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,7 @@ dist_man_MANS = xpar.1 # Developer convenience targets .PHONY: update-ChangeLog update-ChangeLog: - contrib/gitlog-to-changelog --since=1970-01-01 > ChangeLog + contrib/gitlog-to-changelog > ChangeLog .PHONY: self-check self-check: diff --git a/NEWS b/NEWS index 2d95fe9..66c7fa1 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,12 @@ This file contains release notes for major and minor releases of xpar. For a complete list of source-level changes, consult the ChangeLog file. +=============================================================================== +v0.3 (16-10-2024) +- Improve joint encoding performance on x86_64 machines. +- Support aarch64 Linux. +- Improve cross-platform compatibility of the sharded mode. + =============================================================================== v0.2 (15-10-2024) - Provides a manual page for the xpar command. diff --git a/configure.ac b/configure.ac index 2a69561..f81e4d2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ m4_define([xpar_version_major], [0]) -m4_define([xpar_version_minor], [2]) +m4_define([xpar_version_minor], [3]) m4_define([xpar_version], [xpar_version_major.xpar_version_minor]) AC_PREREQ([2.69])