Skip to content

Commit

Permalink
writing changelog for 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Aug 25, 2021
1 parent b4028be commit d00d8a8
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ license: "MPL-2.0"
message: "If you use this software, please cite it using these metadata."
repository-code: "https://github.com/wehr-lab/autopilot"
title: "Autopilot: Automating behavioral experiments with lots of Raspberry Pis"
version: "0.4.1"
version: "0.4.2"
...
2 changes: 1 addition & 1 deletion autopilot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = 'Jonny Saunders <[email protected]>'
__version__ = '0.4.1'
__version__ = '0.4.2'

from autopilot.setup import setup_autopilot
from autopilot.utils.registry import get, get_task, get_hardware, get_names
27 changes: 27 additions & 0 deletions docs/changelog/v0.4.0.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
.. _changelog_v040:

v0.4.2 (August 24th)
---------------------

Minor Improvements
~~~~~~~~~~~~~~~~~~~

* :class:`~.autopilot.tasks.children.Transformer` can now forward processed
data and input data in addition to returning the processed data. A lateral
improvement until the streaming API is finished.
* :class:`~.autopilot.transform.selection.Slice` now accepts arbitrary indexing
objects, rather than just ``slice`` objects. Not sure why this wasn't the case before.

Bugfixes
~~~~~~~~~

* Fixed a circular import problem that prevented the stim module from being imported because the
placeholder metaclass was in the __init__.py file. Moved it to its own file.
* Fixed another instantiated but not raised value error in gpio

Documentation
~~~~~~~~~~~~~

* Documenting flags in networking objects
* Documenting min_size in camera stream method
* Documenting invert_gyro in I2C_9DOF


v0.4.1 (August 17th)
---------------------

Expand Down

0 comments on commit d00d8a8

Please sign in to comment.