Skip to content

Commit ab1ca33

Browse files
committed
bump version to 0.32-dev
1 parent 006c85c commit ab1ca33

File tree

5 files changed

+70
-4
lines changed

5 files changed

+70
-4
lines changed

condarecipe/larray/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: larray
3-
version: 0.31
3+
version: 0.32-dev
44

55
source:
6-
git_tag: 0.31
6+
git_tag: 0.32-dev
77
git_url: https://github.com/larray-project/larray.git
88
# git_tag: master
99
# git_url: file://c:/Users/gdm/devel/larray/.git

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.32
5+
============
6+
7+
In development.
8+
9+
.. include:: ./changes/version_0_32.rst.inc
10+
11+
412
Version 0.31
513
============
614

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
.. py:currentmodule:: larray
2+
3+
4+
Syntax changes
5+
^^^^^^^^^^^^^^
6+
7+
* renamed ``LArray.old_method_name()`` to :py:obj:`LArray.new_method_name()` (closes :issue:`1`).
8+
9+
* renamed ``old_argument_name`` argument of :py:obj:`LArray.method_name()` to ``new_argument_name``.
10+
11+
12+
Backward incompatible changes
13+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+
15+
* other backward incompatible changes
16+
17+
18+
New features
19+
^^^^^^^^^^^^
20+
21+
* added a feature (see the :ref:`miscellaneous section <misc>` for details). It works on :ref:`api-axis` and
22+
:ref:`api-group` objects.
23+
24+
Here is an example of the new feature:
25+
26+
>>> arr = ndtest((2, 3))
27+
>>> arr
28+
a\b b0 b1 b2
29+
a0 0 1 2
30+
a1 3 4 5
31+
32+
And it can also be used like this:
33+
34+
>>> arr = ndtest("a=a0..a2")
35+
>>> arr
36+
a a0 a1 a2
37+
0 1 2
38+
39+
* added another feature in the editor (closes :editor_issue:`1`).
40+
41+
.. note::
42+
43+
- It works for foo bar !
44+
- It does not work for foo baz !
45+
46+
47+
.. _misc:
48+
49+
Miscellaneous improvements
50+
^^^^^^^^^^^^^^^^^^^^^^^^^^
51+
52+
* improved something.
53+
54+
55+
Fixes
56+
^^^^^
57+
58+
* fixed something (closes :issue:`1`).

larray/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import, division, print_function
22

3-
__version__ = '0.31'
3+
__version__ = '0.32-dev'
44

55

66
from larray.core.axis import Axis, AxisCollection, X

setup.py

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

1010

1111
DISTNAME = 'larray'
12-
VERSION = '0.31'
12+
VERSION = '0.32-dev'
1313
AUTHOR = 'Gaetan de Menten, Geert Bryon, Johan Duyck, Alix Damman'
1414
AUTHOR_EMAIL = 'gdementen@gmail.com'
1515
DESCRIPTION = "N-D labeled arrays in Python"

0 commit comments

Comments
 (0)