Skip to content

Commit 8c9551f

Browse files
committed
add release date - update docs
1 parent fdbbb1f commit 8c9551f

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGE_LOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2025-08-XX 3.6.1:
1+
2025-08-12 3.6.1:
22
-------------------
33
* add development files for statistical tests in `devel/random/`
44
* optimize `util.sum_indices()`

doc/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
==========
33

4+
**3.6.1** (2025-08-12):
5+
6+
* add development files for statistical tests in ``devel/random/``
7+
* optimize ``util.sum_indices()``
8+
* fix RecursionError in ``util.random_k()``, see `#239 <https://github.com/ilanschnell/bitarray/issues/239>`__
9+
* add ``devel/test_sum_indices.py``
10+
11+
412
**3.6.0** (2025-07-29):
513

614
* add ``util.random_k()``, see `#237 <https://github.com/ilanschnell/bitarray/issues/237>`__

doc/reference.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Reference
22
=========
33

4-
bitarray version: 3.6.0 -- `change log <https://github.com/ilanschnell/bitarray/blob/master/doc/changelog.rst>`__
4+
bitarray version: 3.6.1 -- `change log <https://github.com/ilanschnell/bitarray/blob/master/doc/changelog.rst>`__
55

66
In the following, ``item`` and ``value`` are usually a single bit -
77
an integer 0 or 1.
@@ -577,7 +577,7 @@ This sub-module was added in version 1.2.
577577

578578
``sum_indices(a, /)`` -> int
579579
Return sum of indices of all active bits in bitarray ``a``.
580-
This is equivalent to ``sum(i for i, v in enumerate(a) if v)``.
580+
Equivalent to ``sum(i for i, v in enumerate(a) if v)``.
581581

582582
New in version 3.6
583583

0 commit comments

Comments
 (0)