Skip to content

Commit

Permalink
Bump to v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Jan 29, 2021
1 parent cdfb875 commit 9ca0d3a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 152 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ check:
@echo "Checking library/${LIBRARY_NAME}/__init__.py"
@cat library/${LIBRARY_NAME}/__init__.py | grep "^__version__ = '${LIBRARY_VERSION}'"

python-readme: library/README.rst
python-readme: library/README.md

python-license: library/LICENSE.txt

library/README.rst: README.md
pandoc --from=markdown --to=rst -o library/README.rst README.md
library/README.md: README.md
cp README.md library/README.md

library/LICENSE.txt: LICENSE
cp LICENSE library/LICENSE.txt
Expand Down
8 changes: 8 additions & 0 deletions library/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.2.0
-----

* inky impression set_border support
* fix inky impression orange colour
* fix inky impression ivnalid arg bug for Python 2
* add inky impression simulator

1.1.1
-----

Expand Down
146 changes: 0 additions & 146 deletions library/README.rst

This file was deleted.

2 changes: 1 addition & 1 deletion library/inky/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .inky_uc8159 import Inky as Inky7Colour # noqa: F401
from .auto import auto # noqa: F401

__version__ = '1.1.1'
__version__ = '1.2.0'

try:
from pkg_resources import declare_namespace
Expand Down
5 changes: 3 additions & 2 deletions library/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@

setup(
name='inky',
version='1.1.1',
version='1.2.0',
author='Philip Howard',
author_email='[email protected]',
description='Inky pHAT Driver',
long_description=open('README.rst').read() + '\n' + open('CHANGELOG.txt').read(),
long_description=open('README.md').read() + '\n' + open('CHANGELOG.txt').read(),
long_description_content_type="text/markdown",
license='MIT',
keywords='Raspberry Pi e-paper display driver',
url='http://www.pimoroni.com',
Expand Down

0 comments on commit 9ca0d3a

Please sign in to comment.