Skip to content

Commit d00d8a8

Browse files
writing changelog for 0.4.2
1 parent b4028be commit d00d8a8

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ license: "MPL-2.0"
1919
message: "If you use this software, please cite it using these metadata."
2020
repository-code: "https://github.com/wehr-lab/autopilot"
2121
title: "Autopilot: Automating behavioral experiments with lots of Raspberry Pis"
22-
version: "0.4.1"
22+
version: "0.4.2"
2323
...

autopilot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'Jonny Saunders <[email protected]>'
2-
__version__ = '0.4.1'
2+
__version__ = '0.4.2'
33

44
from autopilot.setup import setup_autopilot
55
from autopilot.utils.registry import get, get_task, get_hardware, get_names

docs/changelog/v0.4.0.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
.. _changelog_v040:
22

3+
v0.4.2 (August 24th)
4+
---------------------
5+
6+
Minor Improvements
7+
~~~~~~~~~~~~~~~~~~~
8+
9+
* :class:`~.autopilot.tasks.children.Transformer` can now forward processed
10+
data and input data in addition to returning the processed data. A lateral
11+
improvement until the streaming API is finished.
12+
* :class:`~.autopilot.transform.selection.Slice` now accepts arbitrary indexing
13+
objects, rather than just ``slice`` objects. Not sure why this wasn't the case before.
14+
15+
Bugfixes
16+
~~~~~~~~~
17+
18+
* Fixed a circular import problem that prevented the stim module from being imported because the
19+
placeholder metaclass was in the __init__.py file. Moved it to its own file.
20+
* Fixed another instantiated but not raised value error in gpio
21+
22+
Documentation
23+
~~~~~~~~~~~~~
24+
25+
* Documenting flags in networking objects
26+
* Documenting min_size in camera stream method
27+
* Documenting invert_gyro in I2C_9DOF
28+
29+
330
v0.4.1 (August 17th)
431
---------------------
532

0 commit comments

Comments
 (0)