Skip to content

Commit

Permalink
Update the changelog for our latest release (#812)
Browse files Browse the repository at this point in the history
* new changelog section for v0.1.1

* add toc for changelog

* maxdepth -> depth

* fix table of contents

* prepare basic structure for next changelog

* add some further changes from the last release to the changelog

* add a second checkbox for changelog

* add asset_dir entry to changelog

* also give location to changelog source file in checkbox text
  • Loading branch information
behackl authored Dec 2, 2020
1 parent 1a40993 commit 9d7d640
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ changes warrant it!
## Further Comments
<!-- Optional, any edits/updates should preferably be written here. -->

## Acknowledgement
- [ ] I have read the [Contributing Guidelines](https://github.com/ManimCommunity/manim/wiki/Documentation-guidelines-(WIP))
## Acknowledgements
- [ ] I have read the [Contributing Guidelines](https://docs.manim.community/en/latest/contributing.html)
- [ ] I have added an entry describing the changes from this PR to the [Changelog](https://docs.manim.community/en/latest/changelog.html) at `docs/source/changelog.rst`

<!-- Once again, thanks for helping out by contributing to manim! -->
45 changes: 41 additions & 4 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,44 +2,77 @@
Changelog
#########

.. contents:: Release history
:depth: 1
:local:
:backlinks: none


****************
Upcoming release
****************

:Date: TBD

Changes since the latest released version.

New Features
============

- There is nothing here yet, check back later.

Bugfixes
========

- There is nothing here yet, check back later.


******
v0.2.0
v0.1.1
******

:Date: TBD
:Date: December 1, 2020

Changes since Manim Community release v0.1.0

Fixes
=====

#. JsRender is optional to install. (via :pr:`697`).
#. Allow importing modules from the same directory as the input
file when using ``manim`` from the command line (via :pr:`724`).
#. Remove some unnecessary or unpythonic methods from :class:`~.Scene`
(``get_mobjects``, ``add_mobjects_among``, ``get_mobject_copies``),
via :pr:`758`.
#. Fix formatting of :class:`~.Code` (via :pr:`798`).

Configuration
=============

#. Removed the ``skip_animations`` config option and added the
``Renderer.skip_animations`` attribute instead (via :pr:`696`).

#. The global ``config`` dict has been replaced by a global ``config`` instance
of the new class :class:`~.ManimConfig`. This class has a dict-like API, so
this should not break user code, only make it more robust. See the
Configuration tutorial for details.
#. Added the option to configure a directory for external assets (via :pr:`649`).


Documentation
=============

#. Add ``:issue:`` and ``:pr:`` directives for simplifying linking to issues and
pull requests on GitHub (via :pr:`685`).
#. Add a ``skip-manim`` tag for skipping the ``.. manim::`` directive when
building the documentation locally (via :pr:`796`).


Mobjects, Scenes, and Animations
================================

#. The ``alignment`` attribute to Tex and MathTex has been removed in favour of ``tex_environment``.
#. :class:`~.Text` now uses Pango for rendering. ``PangoText`` has been removed. The old implementation is still available as a fallback as :class:`~.CairoText`.
#. **New**: Variations of :class:`~.Dot` have been added as :class:`~.AnnotationDot`
#. Variations of :class:`~.Dot` have been added as :class:`~.AnnotationDot`
(a bigger dot with bolder stroke) and :class:`~.LabeledDot` (a dot containing a
label).
#. Scene.set_variables_as_attrs has been removed (via :pr:`692`).
Expand All @@ -50,6 +83,10 @@ Mobjects, Scenes, and Animations
#. Added BraceBetweenPoints (via :pr:`693`).
#. Added ArcPolygon and ArcPolygonFromArcs (via :pr:`707`).
#. Added Cutout (via :pr:`760`).
#. Added :class:`~.ManimBanner` for a animated version of our logo and banner (via :pr:`729`)
#. The background color of a scene can now be changed reliably by setting, e.g.,
``self.camera.background_color = RED`` (via :pr:`716`).



******
Expand Down

0 comments on commit 9d7d640

Please sign in to comment.