Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 13.1.0 #1067

Merged
merged 1 commit into from
Dec 9, 2024
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
34 changes: 34 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,40 @@
Changelog
=========

13.1.0
------

* Fix rotate_left and rotate_right behavior (it was swapped!)

* Fix compress implementation on RISC-V

* Improve RISC-V CI

* Fix clang-17 compilation on RISC-V

* Validate cmake integration

* Provide xsimd::transpose on 64 and 32 bits on most platforms

* Improve documentation

* Provide xsimd::batch_bool::count

* Fix interaction between xsimd::make_sized_batch_t and
xsimd::batch<std::complex, ...>

* Fix vbmi, sve and rvv detection through xsimd::available_architectures

* Fix compilation on MS targets where ``small`` can be defined.

* Change default install directory for installed headers.

* Support mixed-complex implementations of xsimd::pow()

* Improve xsimd::pow implementation for complex numbers

* Fix uninitialized read in lgamma implementation

13.0.0
------

Expand Down
2 changes: 1 addition & 1 deletion include/xsimd/config/xsimd_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#define XSIMD_CONFIG_HPP

#define XSIMD_VERSION_MAJOR 13
#define XSIMD_VERSION_MINOR 0
#define XSIMD_VERSION_MINOR 1
#define XSIMD_VERSION_PATCH 0

/**
Expand Down
Loading