Skip to content

Commit 534db00

Browse files
committed
bump version to 0.34.5-dev
1 parent ccc77ba commit 534db00

File tree

4 files changed

+51
-2
lines changed

4 files changed

+51
-2
lines changed

doc/source/changes.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
##########
33

4+
Version 0.34.5
5+
==============
6+
7+
In development.
8+
9+
.. include:: ./changes/version_0_34_5.rst.inc
10+
11+
412
Version 0.34.3
513
==============
614

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
.. py:currentmodule:: larray_editor
2+
3+
Syntax changes
4+
^^^^^^^^^^^^^^
5+
6+
* renamed ``MappingEditor.old_method_name()`` to :py:obj:`MappingEditor.new_method_name()` (closes :editor_issue:`1`).
7+
8+
* renamed ``old_argument_name`` argument of :py:obj:`MappingEditor.method_name()` to ``new_argument_name``.
9+
10+
11+
Backward incompatible changes
12+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13+
14+
* other backward incompatible changes
15+
16+
17+
New features
18+
^^^^^^^^^^^^
19+
20+
* added a feature (see the :ref:`miscellaneous section <misc_editor>` for details).
21+
22+
* added another feature in the editor (closes :editor_issue:`1`).
23+
24+
.. note::
25+
26+
- It works for foo bar !
27+
- It does not work for foo baz !
28+
29+
30+
.. _misc_editor:
31+
32+
Miscellaneous improvements
33+
^^^^^^^^^^^^^^^^^^^^^^^^^^
34+
35+
* improved something.
36+
37+
38+
Fixes
39+
^^^^^
40+
41+
* fixed something (closes :editor_issue:`1`).

larray_editor/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from larray_editor.api import * # noqa: F403
22

3-
__version__ = '0.34.3'
3+
__version__ = '0.34.5-dev'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def readlocal(fname):
77

88

99
DISTNAME = 'larray-editor'
10-
VERSION = '0.34.3'
10+
VERSION = '0.34.5-dev'
1111
AUTHOR = 'Gaetan de Menten, Geert Bryon, Johan Duyck, Alix Damman'
1212
AUTHOR_EMAIL = 'gdementen@gmail.com'
1313
DESCRIPTION = "Graphical User Interface for LArray library"

0 commit comments

Comments
 (0)