Skip to content

Commit 28686b6

Browse files
author
Martin O'Hanlon
committed
0.4.1
1 parent ce8e0cd commit 28686b6

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

docs/changelog.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff 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+
613
0.4.0 - 2022-11-18
7-
~~~~~~~~~~~~~~~~~~
14+
------------------
815

916
+ Introduced ``Servo`` class
1017
+ Documentation fixes
1118

1219
0.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

2229
0.2.0 - 2022-06-29
23-
~~~~~~~~~~~~~~~~~~
30+
------------------
2431

2532
+ Pico W compatibility fix for onboard LED.
2633

2734
0.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

3643
0.1.0 - 2022-04-08
37-
~~~~~~~~~~~~~~~~~~
44+
------------------
3845

3946
+ Beta release.
4047
+ Documentation updates.
4148
+ Minor bug fixes and refactoring.
4249

4350
0.0.2 - 2022-03-31
44-
~~~~~~~~~~~~~~~~~~
51+
------------------
4552

4653
+ Bug fixes and documentation updates.
4754

4855
0.0.1 - 2022-03-21
49-
~~~~~~~~~~~~~~~~~~
56+
------------------
5057

5158
+ Initial alpha release to test installation process.
5259

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __getattr__(cls, name):
4747
author = '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 ---------------------------------------------------

picozero/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__name__ = "picozero"
22
__package__ = "picozero"
3-
__version__ = '0.4.0'
3+
__version__ = '0.4.1'
44
__author__ = "Raspberry Pi Foundation"
55

66
from .picozero import (

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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'

0 commit comments

Comments
 (0)