Skip to content

Commit a5f53ac

Browse files
authored
Merge pull request #107 from martinohanlon/dev
v 0.4.2
2 parents 84a6b59 + 409939a commit a5f53ac

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

docs/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Change log
33

44
.. currentmodule:: picozero
55

6+
0.4.2 - 2023-05-12
7+
------------------
8+
9+
+ Bug fix relating to DigitalInputDevice bounce times
10+
+ Updated tests after a change in micropython 1.20+
11+
612
0.4.1 - 2022-12-22
713
------------------
814

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.1'
50+
release = '0.4.2'
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.1'
3+
__version__ = '0.4.2'
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.1'
6+
__version__ = '0.4.2'
77
__author__ = "Raspberry Pi Foundation"
88
__author_email__ = '[email protected]'
99
__license__ = 'MIT'

0 commit comments

Comments
 (0)