|
| 1 | +--- |
| 2 | +short-title: v0.20.0 |
| 3 | +description: Changelog for v0.20.0 |
| 4 | +--- |
| 5 | + |
| 6 | +# v0.20.0 |
| 7 | + |
| 8 | +Date |
| 9 | +: February 20, 2026 |
| 10 | + |
| 11 | + |
| 12 | +## What's Changed |
| 13 | +### Breaking Changes 🚨 |
| 14 | +* Fix `ImageMobject` 3D rotation/flipping and remove resampling algorithms `lanczos` (`antialias`), `box` and `hamming` by {user}`chopan050` in {pr}`4266` |
| 15 | +* Fix `YELLOW_C` and add `PURE_CYAN`, `PURE_MAGENTA` and `PURE_YELLOW` by {user}`chopan050` in {pr}`4562` |
| 16 | + |
| 17 | +### Highlights 🌟 |
| 18 | +* Rewrite MathTex to make it more robust regarding splitting by {user}`henrikmidtiby` in {pr}`4515` |
| 19 | + |
| 20 | + The MathTex implementation has been updated to make it more robust and fix a number of issues. |
| 21 | + A beneficial side effect is that named groups in svg files can now be accessed through SVGMobject. |
| 22 | + |
| 23 | +* Add new Animation Builder `Mobject.always` by {user}`JasonGrace2282` in {pr}`4594` |
| 24 | + |
| 25 | + This new feature is a convenience wrapper around `add_updater` that allows adding |
| 26 | + updaters to a mobject in an intuitive and easy-to-read way. Example usage in a scene: |
| 27 | + ```python |
| 28 | + d = Dot() |
| 29 | + s = Square() |
| 30 | + d.always.next_to(s, UP) |
| 31 | + self.add(s, d) |
| 32 | + self.play(s.animate.to_edge(LEFT)) |
| 33 | + ``` |
| 34 | + |
| 35 | + |
| 36 | +### New Features ✨ |
| 37 | +* Add a `seed` config option + `--seed` CLI option for reproducible randomness in rendered scenes by {user}`arnaud-ma` in {pr}`4532` |
| 38 | + |
| 39 | +### Enhancements 🚀 |
| 40 | +* Enable `strict=True` for `zip()` where safe by {user}`Oll-iver` in {pr}`4547` |
| 41 | + |
| 42 | +### Bug Fixes 🐛 |
| 43 | +* using `color` instead of `fill_color` with MathTeX for node labels by {user}`Schefflera-Arboricola` in {pr}`4501` |
| 44 | +* fix: infinite recursion caused by accessing color of a highlighted Ta… by {user}`BHearron` in {pr}`4435` |
| 45 | +* Prevent potential `UnboundLocalError` in `PolarPlane` by {user}`RinZ27` in {pr}`4557` |
| 46 | +* Fixed division by 0 in `turn_animation_into_updater` by {user}`SoldierSacha` in {pr}`4567` |
| 47 | +* Fix TOCTOU Race Conditions when creating directories by {user}`SoldierSacha` in {pr}`4587` |
| 48 | +* Resolve more race conditions potentially happening during directory creation by {user}`SoldierSacha` in {pr}`4589` |
| 49 | +* Fix `c2p`/`coords_to_point` method call with single flat list or 1D array input by {user}`danielalanbates` in {pr}`4596` |
| 50 | + |
| 51 | +### Documentation 📚 |
| 52 | +* Enable rendered documentation of `RandomColorGenerator` by {user}`arnaud-ma` in {pr}`4533` |
| 53 | +* Remove pin to Python 3.13 in installation docs by {user}`chopan050` in {pr}`4534` |
| 54 | +* Fix broken aquabeam OpenGL link using Wayback Machine by {user}`behackl` in {pr}`4545` |
| 55 | +* Add type annotations and docstrings in `opengl_renderer.py` by {user}`arnaud-ma` in {pr}`4537` |
| 56 | +* docs: improve `TransformFromCopy` docstring by {user}`GoThrones` in {pr}`4597` |
| 57 | + |
| 58 | +### Infrastructure & Build 🔨 |
| 59 | +* Install missing dependencies in release pipeline by {user}`behackl` in {pr}`4531` |
| 60 | + |
| 61 | +### Code Quality & Refactoring 🧹 |
| 62 | +* Rework and consolidate release changelog script, add previously skipped changelog entries by {user}`behackl` in {pr}`4568` |
| 63 | +* Remove `__future__.annotations` from required imports by {user}`JasonGrace2282` in {pr}`4571` |
| 64 | +* Cleaned up `mypy.ini` by {user}`henrikmidtiby` in {pr}`4584` |
| 65 | +* Add `py.typed` to declare manim as having type hints by {user}`Timmmm` in {pr}`4553` |
| 66 | +* Fix assertion in `ImageMobjectFromCamera.interpolate_color()` by {user}`chopan050` in {pr}`4593` |
| 67 | +* Reduce dependency on scipy - replace `scipy.special.comb` with `math.comb` by {user}`fmuenkel` in {pr}`4598` |
| 68 | + |
| 69 | +### Type Hints 📝 |
| 70 | +* Add type annotations to `rotation.py` by {user}`fmuenkel` in {pr}`4535` |
| 71 | +* Add type annotations to `opengl_compatibility.py` by {user}`fmuenkel` in {pr}`4585` |
| 72 | +* Add type annotations to `image_mobject.py` by {user}`henrikmidtiby` in {pr}`4458` |
| 73 | +* Add type annotations to `opengl_image_mobject.py` by {user}`fmuenkel` in {pr}`4536` |
| 74 | +* Add type annotations to `point_cloud_mobject.py` by {user}`fmuenkel` in {pr}`4586` |
| 75 | + |
| 76 | +## New Contributors |
| 77 | +* {user}`arnaud-ma` made their first contribution in {pr}`4533` |
| 78 | +* {user}`Schefflera-Arboricola` made their first contribution in {pr}`4501` |
| 79 | +* {user}`BHearron` made their first contribution in {pr}`4435` |
| 80 | +* {user}`RinZ27` made their first contribution in {pr}`4557` |
| 81 | +* {user}`SoldierSacha` made their first contribution in {pr}`4567` |
| 82 | +* {user}`Oll-iver` made their first contribution in {pr}`4547` |
| 83 | +* {user}`GoThrones` made their first contribution in {pr}`4597` |
| 84 | +* {user}`danielalanbates` made their first contribution in {pr}`4596` |
| 85 | + |
| 86 | +**Full Changelog**: [Compare view](https://github.com/ManimCommunity/manim/compare/v0.19.2...v0.20.0) |
0 commit comments