Skip to content

Commit f309877

Browse files
author
Martin O'Hanlon
committed
v0.4.0
1 parent 705dbeb commit f309877

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
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.0 - 2022-11-18
7+
~~~~~~~~~~~~~~~~~~
8+
9+
+ Introduced `Servo` classes
10+
+ Documentation fixes
11+
612
0.3.0 - 2022-08-12
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.3.0'
50+
release = '0.4.0'
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.3.0'
3+
__version__ = '0.4.0'
44
__author__ = "Raspberry Pi Foundation"
55

66
from .picozero import (

setup.py

Lines changed: 2 additions & 2 deletions
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.3.0'
6+
__version__ = '0.4.0'
77
__author__ = "Raspberry Pi Foundation"
88
__author_email__ = '[email protected]'
99
__license__ = 'MIT'
@@ -15,7 +15,7 @@
1515
'electronics',
1616
]
1717
__classifiers__ = [
18-
'Development Status :: 1 - Planning',
18+
'Development Status :: 4 - Beta',
1919
'Intended Audience :: Developers',
2020
'Intended Audience :: Education',
2121
'Programming Language :: Python :: Implementation :: MicroPython',

0 commit comments

Comments
 (0)