diff --git a/src/singles/MagnumMath.hpp b/src/singles/MagnumMath.hpp index 465dbfeb4..32f080ed0 100644 --- a/src/singles/MagnumMath.hpp +++ b/src/singles/MagnumMath.hpp @@ -15,6 +15,16 @@ - GitHub project page — https://github.com/mosra/magnum - GitHub Singles repository — https://github.com/mosra/magnum-singles + v2019.10-0-g8412e8f99 (2019-10-24) + - New IsScalar, IsVector, IsIntegral, IsFloatingPoint type traits, + correct handling of Deg and Rad types in all APIs + - Guaranteed NaN handling semantic in min()/max()/minmax() APIs + - Using a GCC compiler builtin in sincos() + - swizzle() is replaced with gather() and scatter() + - Added Matrix::{cofactor,comatrix,adjugate}(), Matrix4::normalMatrix() + - New Matrix4::perspectiveProjection() overload taking corner positions + - Handling also Eigen::Ref types; EigenIntegration::eigenCast() is now + just EigenIntegration::cast() v2019.01-241-g93686746a (2019-04-03) - Initial release diff --git a/src/singles/base.h b/src/singles/base.h index a1c0ae7d3..6029f4c89 100644 --- a/src/singles/base.h +++ b/src/singles/base.h @@ -48,7 +48,7 @@ /* Make it possible to include Assert.h multiple times */ #pragma ACME disable Corrade_Utility_Assert_h -#pragma ACME revision corrade/src echo "$(git describe --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))" -#pragma ACME revision magnum/src echo "$(git describe --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))" +#pragma ACME revision corrade/src echo "$(git describe --long --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))" +#pragma ACME revision magnum/src echo "$(git describe --long --match 'v*') ($(date -d @$(git log -1 --format=%at) +%Y-%m-%d))" #pragma ACME stats loc wc -l #pragma ACME stats preprocessed g++ -std=c++11 -P -E -x c++ - | wc -l