From 232cd94c4bfdd277f98232bf1d55a1a6f31238c9 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 13 Feb 2020 08:34:01 +0000 Subject: [PATCH] Release 2.0.1 --- CHANGES.rst | 11 +++++++++++ rpi_backlight/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index e3a45fc..a854c4e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,17 @@ Changes ======= +2.0.1 +----- + +- Add mypy type checking +- Add Python 3.8 to Travis CI config +- Fix documentation readthedocs build +- Fix typo in docs +- Improve README.md +- Mark project as stable on PyPI + + 2.0.0 ----- diff --git a/rpi_backlight/__init__.py b/rpi_backlight/__init__.py index 5507966..9675756 100644 --- a/rpi_backlight/__init__.py +++ b/rpi_backlight/__init__.py @@ -8,7 +8,7 @@ from os import PathLike __author__ = "Linus Groh" -__version__ = "2.0.0" +__version__ = "2.0.1" __all__ = ["Backlight"] _BACKLIGHT_SYSFS_PATH = "/sys/class/backlight/rpi_backlight/"