Skip to content

Commit c4b40ed

Browse files
MrDiverbehacklpre-commit-ci[bot]
authored
Prepared new Hotfix Release: v0.17.2 (#3090)
* bump version number * generated changelog for v0.17.2 * either "a NumPy array" or "an np array", based on how "n" is pronounced * minor language improvements * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: Benjamin Hackl <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 7d7c505 commit c4b40ed

File tree

5 files changed

+66
-4
lines changed

5 files changed

+66
-4
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ authors:
44
-
55
name: "The Manim Community Developers"
66
cff-version: "1.2.0"
7-
date-released: 2022-12-08
7+
date-released: 2022-12-26
88
license: MIT
99
message: "We acknowledge the importance of good software to support research, and we note that research becomes more valuable when it is communicated effectively. To demonstrate the value of Manim, we ask that you cite Manim in your work."
1010
title: Manim – Mathematical Animation Framework
1111
url: "https://www.manim.community/"
12-
version: "v0.17.1"
12+
version: "v0.17.2"
1313
...

docs/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Changelog
55

66
.. toctree::
77

8+
changelog/0.17.2-changelog
89
changelog/0.17.1-changelog
910
changelog/0.17.0-changelog
1011
changelog/0.16.0-changelog
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
*******
2+
v0.17.2
3+
*******
4+
5+
:Date: December 26, 2022
6+
7+
Contributors
8+
============
9+
10+
A total of 5 people contributed to this
11+
release. People with a '+' by their names authored a patch for the first
12+
time.
13+
14+
* CaftBotti +
15+
* Tristan Schulz
16+
* lgtm-com[bot] +
17+
18+
19+
The patches included in this release have been reviewed by
20+
the following contributors.
21+
22+
* Benjamin Hackl
23+
* Naveen M K
24+
* Tristan Schulz
25+
26+
Pull requests merged
27+
====================
28+
29+
A total of 7 pull requests were merged for this release.
30+
31+
Fixed bugs
32+
----------
33+
34+
* :pr:`3089`: Fixed OpenGL mobjects like :class:`.Surface` by reordering init calls
35+
36+
37+
Documentation-related changes
38+
-----------------------------
39+
40+
* :pr:`3073`: Fixed typo: "Whetherer" to "Whether"
41+
42+
43+
* :pr:`3074`: Fixed typo in a comment
44+
45+
46+
Code quality improvements and similar refactors
47+
-----------------------------------------------
48+
49+
* :pr:`3024`: Add CodeQL workflow for GitHub code scanning
50+
51+
52+
* :pr:`3079`: Updated CI syntax for runner version >= 2.298.2
53+
54+
55+
* :pr:`3084`: Properly setup CodeQL
56+
57+
58+
New releases
59+
------------
60+
61+
* :pr:`3090`: Prepared new Hotfix Release: ``v0.17.2``

manim/mobject/graphing/number_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def __init__(
173173
"num_decimal_places": self._decimal_places_from_step(x_range[2]),
174174
}
175175

176-
# turn into a np array to scale by just applying the function
176+
# turn into a NumPy array to scale by just applying the function
177177
self.x_range = np.array(x_range, dtype=float)
178178
self.x_min, self.x_max, self.x_step = scaling.function(self.x_range)
179179
self.length = length

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "manim"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
description = "Animation engine for explanatory math videos."
55
authors = ["The Manim Community Developers <[email protected]>", "3b1b <[email protected]>"]
66
license="MIT"

0 commit comments

Comments
 (0)