From 483ea02e9ccd6d958e3dcd1fe820cadbab900e66 Mon Sep 17 00:00:00 2001 From: Saransh Chopra Date: Tue, 23 Apr 2024 16:12:53 +0200 Subject: [PATCH 1/2] Update changelog --- docs/changelog.md | 24 ++++++++++++++++++++++++ docs/usage/intro.ipynb | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 214a858f..bf0ef861 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,29 @@ # Changelog +## Version 1.4 + +### Version 1.4.0 + +#### Features + +- feat: allow coord values in to\_ methods [#446][] +- feat: a sympy backend [$442][] + +#### Bug fixes + +- fix: call the square implementation for power 2 on object vectors [#444][] +- fix: use negfactor in negfactor scale test [#456][] + +#### Maintenance + +- chore: test on numpy 2.0 [#451][] + +[#446]: https://github.com/scikit-hep/vector/pull/446 +[#442]: https://github.com/scikit-hep/vector/pull/442 +[#444]: https://github.com/scikit-hep/vector/pull/444 +[#456]: https://github.com/scikit-hep/vector/pull/456 +[#451]: https://github.com/scikit-hep/vector/pull/451 + ## Version 1.3 ### Version 1.3.1 diff --git a/docs/usage/intro.ipynb b/docs/usage/intro.ipynb index 45577559..80047767 100644 --- a/docs/usage/intro.ipynb +++ b/docs/usage/intro.ipynb @@ -573,7 +573,7 @@ "source": [ "### SymPy vectors\n", "\n", - "> Note: In order to allow SymPy simplifications to work effectively, operations on SymPy vectors are a 100% correct only if the vectors are time-like, that is, they lie in the positive time-like cone (`t**2 > x**2 + y**2 + z**2`). Operations on other vectors might output wrong results.\n", + "> **Note:** Operations on SymPy vectors are only 100% compatible with numeric vectors (Python, NumPy, and Awkward backends) if the vectors are positive time-like, that is, if `t**2 > x**2 + y**2 + z**2`. The space-like and negative time-like cases have different sign conventions.\n", "\n", "You can directly use the `VectorSympy` and `MomentumSympy` classes to construct object type vectors:" ] From 641131780e29bae5bea75a979b992cf4d85d2346 Mon Sep 17 00:00:00 2001 From: Saransh Chopra Date: Tue, 23 Apr 2024 16:13:45 +0200 Subject: [PATCH 2/2] Update changelog.md --- docs/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index bf0ef861..dbbdb557 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -7,7 +7,7 @@ #### Features - feat: allow coord values in to\_ methods [#446][] -- feat: a sympy backend [$442][] +- feat: a sympy backend [#442][] #### Bug fixes