Skip to content

Commit

Permalink
bump version number; add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
GregDMeyer committed May 3, 2022
1 parent 750e5e5 commit 6721516
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

# Changelog

## 0.1.1 - 2022-05-02

### Added

- "mirror" option to reverse display
- configurable timeout when waiting for display ready

### Removed

- "flip" option (use `rotate="flip"` instead)

## 0.1.0

For this version the backend was rewritten, so that the SPI communication happens directly
by communicating with the Linux kernel through `/dev/spidev*`. This means:

- `sudo` no longer required
- requires neither the `bcm2835` C library nor the `spidev` Python module
- data transfer is way faster than before!
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,6 @@ stated in the IT8951 chip spec [here](https://www.waveshare.com/w/upload/1/18/IT
But, you could try setting higher and seeing if it works anyway.
It is set by passing the `spi_hz` argument to the Display or EPD classes (see example in `tests/integration/tests.py`).

### Updates for version 0.1.0

For this version the backend was rewritten, so that the SPI communication happens directly
by communicating with the Linux kernel through `/dev/spidev*`. This means:

- `sudo` no longer required
- requires neither the `bcm2835` C library nor the `spidev` Python module
- data transfer is way faster than before!

### Hacking

If you modify `spi.pyx`, make sure to set the `USE_CYTHON` environment variable before building---otherwise your
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
setup(
name='IT8951',
packages=['IT8951'],
version='0.1.0',
version='0.1.1',
ext_modules=extensions,
)

0 comments on commit 6721516

Please sign in to comment.