Skip to content

Commit 6fef3db

Browse files
committed
DOC: prepare changelog for release
1 parent 5b2b66b commit 6fef3db

File tree

1 file changed

+6
-33
lines changed

1 file changed

+6
-33
lines changed

doc/source/changes/version_0_35.rst.inc

Lines changed: 6 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
Syntax changes
55
^^^^^^^^^^^^^^
66

7-
* renamed ``Array.old_method_name()`` to :py:obj:`Array.new_method_name()` (closes :issue:`1`).
8-
97
* renamed ``stacked`` argument of :py:obj:`Array.plot()` to ``stack``. This
108
also impacts all the relevant kind-specific sub-methods
119
(:py:obj:`Array.plot.area()`, :py:obj:`Array.plot.bar()`,
@@ -25,8 +23,10 @@ Backward incompatible changes
2523
Shown plots will open a window and pause the running script until the window
2624
is closed by the user. To revert to the previous behavior, use show=False.
2725

28-
* Using :py:obj:`CheckedSession`, :py:obj:`CheckedParameters` or :py:obj:`CheckedArray`
29-
now requires to install pydantic >= 2.12 (closes :issue:`1075`).
26+
* Using :py:obj:`CheckedSession`, :py:obj:`CheckedParameters` or
27+
:py:obj:`CheckedArray` now requires installing pydantic >= 2.12
28+
(closes :issue:`1075`).
29+
3030

3131
New features
3232
^^^^^^^^^^^^
@@ -49,40 +49,13 @@ New features
4949
directly, without having to use the matplotlib API. This is the new default
5050
behavior, unless a ``filepath`` is given.
5151

52-
* implemented a new kind of plot: `heatmap`. It can be used like this:
52+
* implemented a new kind of plot: ``heatmap``. It can be used like this:
5353

5454
>>> arr.plot.heatmap()
5555

5656
* implemented :py:obj:`Session.align()` to align all the arrays in several
5757
sessions at once. Closes :issue:`501`.
5858

59-
* added a feature (see the :ref:`miscellaneous section <misc>` for details). It works on :ref:`api-axis` and
60-
:ref:`api-group` objects.
61-
62-
Here is an example of the new feature:
63-
64-
>>> arr = ndtest((2, 3))
65-
>>> arr
66-
a\b b0 b1 b2
67-
a0 0 1 2
68-
a1 3 4 5
69-
70-
And it can also be used like this:
71-
72-
>>> arr = ndtest("a=a0..a2")
73-
>>> arr
74-
a a0 a1 a2
75-
0 1 2
76-
77-
* added another feature in the editor (closes :editor_issue:`1`).
78-
79-
.. note::
80-
81-
- It works for foo bar !
82-
- It does not work for foo baz !
83-
84-
85-
.. _misc:
8659

8760
Miscellaneous improvements
8861
^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -144,4 +117,4 @@ Fixes
144117

145118
* fixed evaluating operations involving X.axis and an array when
146119
that operation is only valid in the context of a larger array by delaying
147-
the evaluation until the larger array is known (closes :issue:`1129`).
120+
the evaluation until the larger array is known (closes :issue:`1129`).

0 commit comments

Comments
 (0)