diff --git a/ChangeLog b/ChangeLog index a77e7c40..523880d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,72 @@ commit unknown -Author:naimar-pro -Date: Tue, 02 Jan 2024 12:14:45 +0100 +Author: Thibaut Paumard +Date: Wed, 17 Jan 2024 23:00:47 +0100 + + Releasing 2.0.1 + +commit 38c25deba22a28a54e57dcd456fbb9f3877ea3cb +Author: Thibaut Paumard +Date: Wed Jan 17 21:54:49 2024 +0100 + + Fix Python warning "is" with a literal + +commit fa9c4f0109359946271687189b5eb0dcb570c099 +Author: Thibaut Paumard +Date: Wed Jan 17 21:49:39 2024 +0100 + + Update autotools + +commit 8f3cd0f6a3825b1cc661083f1b9dc1cd1a7ada08 +Author: Thibaut Paumard +Date: Wed Jan 17 21:38:45 2024 +0100 + + Update configure.ac and gyoto.m4 + +commit 31f883e3b66a2e0439f1a637491e7fd75173de6d +Author: Thibaut Paumard +Date: Wed Jan 17 21:26:51 2024 +0100 + + Eigen is required. + + DocuĆ¹ent it more clearly in INSTALL.Gyoto.md and error out of configure if not found. + +commit f95342829c01aff99cf3a8f746f184a3d53dc19f +Author: Thibaut Paumard +Date: Wed Jan 17 21:11:03 2024 +0100 + + Update configure for flint3 + + Look for ARBLIB in -lflint, -lflint-arb and -larb. + + If --with-arblib-headers is not provided, look for acb.h in /usr/include/flint if not in default path. + + Modified GYOTO_ARG_LIB to allow that. + +commit f95e7e35648beea99101992045a254c0640ad51e +Author: Doug Torrance +Date: Wed Jan 17 14:19:39 2024 -0500 + + Include acb.h (necessary for building with FLINT 3) (#16) + +commit de00106652e3089cdf6c27a311b95a5d376d9398 +Author: Irene Urso +Date: Tue Jan 9 19:57:05 2024 +0100 + + lib/ThinDiskProfile.C: Rezzolla-Zhidenko metric + Generalised synchrotron emission + lib/Scenery.C: bug fix + lib/WorldlineIntegState.C: bug fix + python/gyoto/util.py: bug fix + + ThinDiskProfile: getVelocity for the Rezzolla-Zhidenko metric (cf. Rezzolla&Zhidenko2014) + Emission generalised (cf. eq B4 in Vincent+2022) + Scenery: reinitialisation of nb_cross_eqplane in operator(a,d) + WorldlineIntegState: reset theta in [0;pi] in Boost::nextStep + util: second condition for User1 removed in rayTrace + +commit bb0497357e8794b751c7c60e4a1201add7897887 +Author: naimar-pro +Date: Tue Jan 2 13:51:31 2024 +0100 - Release GYOTO 2.0.0 + Realease GYOTO 2.0.0 commit a38226d53fc5a98318c7150e2a2b3511f09d97dc Author: naimar-pro diff --git a/NEWS b/NEWS index ef59910b..4f8e360c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +2.0.1 2024/01/17 BUG + * Update build system + * ARBLIB is included in flint >= 3, fix includes and configure.ac accordingly + * Update autotools + * Error out when Eigen is not found at configure-time + * Various bug fixes + 2.0.0 2024/01/02 ABI 9:0:0 * Adding the ability to compute polarization quantities: * Implement all polarized synchrotron radiative transfer coefficients diff --git a/configure b/configure index efd66ff0..1dfacb0b 100755 --- a/configure +++ b/configure @@ -17378,7 +17378,7 @@ ac_config_headers="$ac_config_headers config.h include/GyotoConfig.h" # C: current; R: revision; A: age # Linux library name is: libgyoto.so.(C-A).A.R VERSINFO_C=9 -VERSINFO_R=0 +VERSINFO_R=1 VERSINFO_A=0 VERSINFO=${VERSINFO_C}:${VERSINFO_R}:${VERSINFO_A} diff --git a/configure.ac b/configure.ac index 3cb5e01b..8406be5f 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ AC_SUBST([VERBATIM], []) # C: current; R: revision; A: age # Linux library name is: libgyoto.so.(C-A).A.R VERSINFO_C=9 -VERSINFO_R=0 +VERSINFO_R=1 VERSINFO_A=0 VERSINFO=${VERSINFO_C}:${VERSINFO_R}:${VERSINFO_A} AC_SUBST([VERSINFO])