Skip to content

Commit 03be2b4

Browse files
author
Martin O'Hanlon
committed
0.1.0 version bump
1 parent 9994f94 commit 03be2b4

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

docs/changelog.rst

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

44
.. currentmodule:: picozero
55

6+
0.1.0 - 2022-04-08
7+
~~~~~~~~~~~~~~~~~~
8+
9+
+ Beta release
10+
+ Documentation updates
11+
+ Minor bug fixes and refactoring
12+
613
0.0.2 - 2022-03-31
714
~~~~~~~~~~~~~~~~~~
815

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.0.2'
49+
release = '0.1.0'
5050

5151

5252
# -- General configuration ---------------------------------------------------

docs/developing.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@ Build
1010

1111
2. Add release to ``docs/changelog.rst``
1212

13-
3. Run `setup.py` and create a source distribution.:
13+
3. Run `setup.py` and create a source distribution ::
1414

1515
python3 setup.py sdist
1616

17-
4. Upload to PyPI:
17+
4. Upload to PyPI ::
1818

1919
twine upload dist/*
2020

21-
5. Push all change to ``master`` branch
21+
5. Push all changes to ``master`` branch
2222

23-
6. Create a release in github and upload ``picozero-#-#-#.tar.gz`` to the release.
23+
6. Create a `release <https://github.com/RaspberryPiFoundation/picozero/releases>`_ in github and upload ``picozero-#-#-#.tar.gz`` source file to the release.
2424

2525
Documentation
2626
-------------
2727

2828
The documentation site is built using Sphinx.
2929

30-
Install sphinx using :
30+
Install sphinx using ::
3131

3232
pip3 install sphinx
3333

34-
To build the documentation, run the following command from the docs directory:
34+
To build the documentation, run the following command from the docs directory ::
3535

3636
$ make html
3737

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.0.2'
3+
__version__ = '0.1.0'
44
__author__ = "Raspberry Pi Foundation"
55

66
from .picozero import (

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
__project__ = 'picozero'
44
__packages__ = ['picozero']
5-
__desc__ = 'A beginner-friendly library for using common electronics components with the Raspberry Pi Pico. Not yet for general release.'
6-
__version__ = '0.0.2'
5+
__desc__ = 'A beginner-friendly library for using common electronics components with the Raspberry Pi Pico. '
6+
__version__ = '0.1.0'
77
__author__ = "Raspberry Pi Foundation"
88
__author_email__ = '[email protected]'
99
__license__ = 'MIT'
@@ -32,7 +32,7 @@
3232
button.when_released = led.off
3333
```
3434
35-
Not yet for general release.
35+
Documentation is available at [picozero.readthedocs.io](https://picozero.readthedocs.io/en/latest/).
3636
"""
3737

3838
setup(

0 commit comments

Comments
 (0)