Skip to content

Commit df40e31

Browse files
committed
Prep for v1.0.0.
1 parent 5211243 commit df40e31

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.0.0
2+
-----
3+
4+
* Port to hatch/pyproject.toml
5+
* Bump i2cdevice to v1.0.0
6+
17
0.0.3
28
-----
39

README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@
77

88
# Installing
99

10-
Stable library from PyPi:
10+
If you've already set up a Python virtual environment, you can also install the stable library manually from PyPi:
1111

1212
```
1313
pip install drv2605
1414
```
1515

16-
or:
16+
Otherwise our install script will set one up for you.
17+
18+
Stable library from GitHub:
1719

1820
```
1921
git clone https://github.com/pimoroni/drv2605-python
@@ -29,6 +31,12 @@ cd drv2605-python
2931
./install.sh --unstable
3032
```
3133

34+
**Note** Libraries will be installed in the "pimoroni" virtual environment, you will need to activate it to run examples:
35+
36+
```
37+
source ~/.virtualenvs/pimoroni/bin/activate
38+
```
39+
3240
# Vibration Patterns
3341

3442
The DRV2605 has a library of built-in vibration patterns great for haptic feedback, notifications and more. For the complete list see:

drv2605/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from i2cdevice import BitField, Device, Register
55
from i2cdevice.adapter import Adapter, LookupAdapter
66

7-
__version__ = '0.0.3'
7+
__version__ = '1.0.0'
88

99
DRV2605_ADDR = 0x5a
1010

0 commit comments

Comments
 (0)