File tree Expand file tree Collapse file tree 4 files changed +17
-10
lines changed Expand file tree Collapse file tree 4 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,21 @@ Change log
33
44.. currentmodule :: picozero
55
6+ 0.4.1 - 2022-12-22
7+ ------------------
8+
9+ + Introduced ``pinout() ``
10+ + Bug fix with ``DigitalInputDevice.when_deactivated `` decorator
11+ + Documentation tidy up and minor fixes
12+
6130.4.0 - 2022-11-18
7- ~~~~~~~~~~~~~~~~~~
14+ ------------------
815
916+ Introduced ``Servo `` class
1017+ Documentation fixes
1118
12190.3.0 - 2022-08-12
13- ~~~~~~~~~~~~~~~~~~
20+ ------------------
1421
1522+ Introduced ``Motor ``, ``Robot ``, and ``DistanceSensor `` classes.
1623+ Renamed ``LED `` factory ``use_pwm `` parameter to ``pwm `` to match other classes. **Note: ** This is an API breaking change.
@@ -20,12 +27,12 @@ Change log
2027+ Documentation updates.
2128
22290.2.0 - 2022-06-29
23- ~~~~~~~~~~~~~~~~~~
30+ ------------------
2431
2532+ Pico W compatibility fix for onboard LED.
2633
27340.1.1 - 2022-06-08
28- ~~~~~~~~~~~~~~~~~~
35+ ------------------
2936
3037+ Minor fixes for bugs found during testing.
3138+ Small improvements to exception messages.
@@ -34,19 +41,19 @@ Change log
3441+ Added RGBLED.colour as an alias to RGBLED.color.
3542
36430.1.0 - 2022-04-08
37- ~~~~~~~~~~~~~~~~~~
44+ ------------------
3845
3946+ Beta release.
4047+ Documentation updates.
4148+ Minor bug fixes and refactoring.
4249
43500.0.2 - 2022-03-31
44- ~~~~~~~~~~~~~~~~~~
51+ ------------------
4552
4653+ Bug fixes and documentation updates.
4754
48550.0.1 - 2022-03-21
49- ~~~~~~~~~~~~~~~~~~
56+ ------------------
5057
5158+ Initial alpha release to test installation process.
5259
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def __getattr__(cls, name):
4747author = 'Raspberry Pi Foundation'
4848
4949# The full version, including alpha/beta/rc tags
50- release = '0.4.0 '
50+ release = '0.4.1 '
5151
5252
5353# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 11__name__ = "picozero"
22__package__ = "picozero"
3- __version__ = '0.4.0 '
3+ __version__ = '0.4.1 '
44__author__ = "Raspberry Pi Foundation"
55
66from .picozero import (
Original file line number Diff line number Diff line change 33__project__ = 'picozero'
44__packages__ = ['picozero' ]
55__desc__ = 'A beginner-friendly library for using common electronics components with the Raspberry Pi Pico. '
6- __version__ = '0.4.0 '
6+ __version__ = '0.4.1 '
77__author__ = "Raspberry Pi Foundation"
88__author_email__ = 'learning@raspberrypi.org'
99__license__ = 'MIT'
You can’t perform that action at this time.
0 commit comments