Skip to content

Commit 18d0ead

Browse files
committed
v0.2.0 release
1 parent 1351786 commit 18d0ead

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Tom Stokes
3+
Copyright (c) 2015 Tom Stokes
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,3 @@ A pure Python SPI interface using the Linux spidev device
3030
received = spi.transfer([0x11, 0x22, 0xFF])
3131
spi.write([0x12, 0x34, 0xAB, 0xCD])
3232
received = spi.read(10)
33-
34-
35-

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from distutils.core import setup
44

55
setup(name="spi",
6-
version="0.1.0",
6+
version="0.2.0",
77
description="SPI Interface",
88
long_description="Pure Python SPI interface using spidev",
99
author="Tom Stokes",
1010
author_email="[email protected]",
1111
url="http://github.com/tomstokes/python-spi",
1212
license="MIT",
13-
py_modules=['spi'])
13+
py_modules=['spi'])

spi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2014 Thomas Stokes
4+
Copyright (c) 2015 Thomas Stokes
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)