Prep for v0.0.4-post1

Ship new setup.cfg/README.md packaging style and fixed __version__ in __init__.py
This commit is contained in:
Philip Howard
2021-09-06 13:48:42 +01:00
parent bd02b98395
commit d2d1e96f62
4 changed files with 19 additions and 5 deletions

View File

@@ -1,3 +1,10 @@
0.0.4-post1
-----------
* Repackage with Markdown README/setup.cfg
* Fix `__version__` to 0.0.4
* Update dependencies in README
0.0.4
-----
@@ -11,7 +18,7 @@
* Fixed backlight pin
* Added `set_backlight`
* Added constants BG_SPI_CS_FRONT and BG_SPI_CS_BACK
* Added module __version__
* Added module `__version__`
0.0.2
-----

View File

@@ -67,6 +67,13 @@ Modified from 'Modified from 'Adafruit Python ILI9341' written by Tony DiCola fo
MIT license, all text above must be included in any redistribution
# Changelog
0.0.4-post1
-----------
* Repackage with Markdown README/setup.cfg
* Fix `__version__` to 0.0.4
* Update dependencies in README
0.0.4
-----
@@ -80,7 +87,7 @@ MIT license, all text above must be included in any redistribution
* Fixed backlight pin
* Added `set_backlight`
* Added constants BG_SPI_CS_FRONT and BG_SPI_CS_BACK
* Added module __version__
* Added module `__version__`
0.0.2
-----

View File

@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
[metadata]
name = ST7735
version = 0.0.4
version = 0.0.4-post1
author = Philip Howard
author_email = phil@pimoroni.com
description = Library to control an ST7735 168x80 TFT LCD display.
@@ -50,4 +50,4 @@ py3deps =
configtxt =
commands =
printf "Setting up SPI...\n"
raspi-config nonint do_spi 0
raspi-config nonint do_spi 0

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py{27,36,38},qa
envlist = py{27,36,37,39},qa
skip_missing_interpreters = True
[testenv]