Skip to content

Commit 70270b2

Browse files
committed
Prep for v0.0.2
1 parent c2ed508 commit 70270b2

4 files changed

Lines changed: 30 additions & 4 deletions

File tree

library/CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.0.2
2+
-----
3+
4+
* Fix for Pi kernel 5.4.51, removed cshigh setting from SPI setup
5+
16
0.0.1
27
-----
38

library/README.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,40 @@
1-
# unicornhatmini
1+
# Unicorn HAT Mini
22

33
[![Build Status](https://travis-ci.com/pimoroni/unicornhatmini-python.svg?branch=master)](https://travis-ci.com/pimoroni/unicornhatmini-python)
44
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/unicornhatmini-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/unicornhatmini-python?branch=master)
55
[![PyPi Package](https://img.shields.io/pypi/v/unicornhatmini.svg)](https://pypi.python.org/pypi/unicornhatmini)
66
[![Python Versions](https://img.shields.io/pypi/pyversions/unicornhatmini.svg)](https://pypi.python.org/pypi/unicornhatmini)
77

8+
# Requirements
9+
10+
You must enable SPI on your Raspberry Pi:
11+
12+
* Run: `sudo raspi-config nonint do_spi 0`
13+
814
# Installing
915

1016
Stable library from PyPi:
1117

12-
* Just run `sudo pip install unicornhatmini`
18+
* Just run `sudo pip3 install unicornhatmini`
19+
20+
Or for Python 2:
21+
22+
* `sudo pip install unicornhatmini`
1323

1424
Latest/development library from GitHub:
1525

1626
* `git clone https://github.com/pimoroni/unicornhatmini-python`
1727
* `cd unicornhatmini-python`
1828
* `sudo ./install.sh`
1929

30+
31+
# Changelog
32+
0.0.2
33+
-----
34+
35+
* Fix for Pi kernel 5.4.51, removed cshigh setting from SPI setup
36+
37+
0.0.1
38+
-----
39+
40+
* Initial Release

library/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
[metadata]
33
name = unicornhatmini
4-
version = 0.0.1
4+
version = 0.0.2
55
author = Philip Howard
66
author_email = phil@pimoroni.com
77
description = Python library for the unicornhatmini 17x7 RGB LED matrix

library/unicornhatmini/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import RPi.GPIO as GPIO
1111

12-
__version__ = '0.0.1'
12+
__version__ = '0.0.2'
1313

1414

1515
# Holtek HT16D35

0 commit comments

Comments
 (0)