Skip to content

Commit 0acaa00

Browse files
author
Martin O'Hanlon
committed
v0.1.1
1 parent 7ecaafe commit 0acaa00

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

docs/changelog.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@ Change log
33

44
.. currentmodule:: picozero
55

6+
0.1.1 - 2022-06-08
7+
~~~~~~~~~~~~~~~~~~
8+
9+
+ Minor bug fixes found during testing
10+
+ Small improvements to exception messages
11+
+ Added close methods to Speaker and PWMOutputDevice
12+
+ Added unit tests
13+
+ Added RGBLED.colour as an alias to RGBLED.color
14+
615
0.1.0 - 2022-04-08
716
~~~~~~~~~~~~~~~~~~
817

918
+ Beta release
10-
+ Documentation updates
19+
+ Documentation update
1120
+ Minor bug fixes and refactoring
1221

1322
0.0.2 - 2022-03-31

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __getattr__(cls, name):
4646
author = 'Raspberry Pi Foundation'
4747

4848
# The full version, including alpha/beta/rc tags
49-
release = '0.1.0'
49+
release = '0.1.1'
5050

5151

5252
# -- 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.1.0'
3+
__version__ = '0.1.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.1.0'
6+
__version__ = '0.1.1'
77
__author__ = "Raspberry Pi Foundation"
88
__author_email__ = '[email protected]'
99
__license__ = 'MIT'

0 commit comments

Comments
 (0)