diff --git a/CHANGES.rst b/CHANGES.rst index 00dfe4d..e3a45fc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Changes ======= +2.0.0 +----- + +- New, more pythonic API +- Update CLI and GUI +- Support emulator +- Add tests + 1.8.1 ----- diff --git a/README.md b/README.md index 46fc438..21fa5cd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # rpi-backlight -[![Travis CI](https://api.travis-ci.org/linusg/rpi-backlight.svg?branch=v2.0.0-alpha)](https://travis-ci.org/linusg/rpi-backlight) +[![Travis CI](https://api.travis-ci.org/linusg/rpi-backlight.svg?branch=master)](https://travis-ci.org/linusg/rpi-backlight) [![License](https://img.shields.io/github/license/mashape/apistatus.svg)](ttps://github.com/linusg/rpi-backlight/blob/master/LICENSE) [![PyPI](https://img.shields.io/pypi/v/rpi-backlight.svg)](https://pypi.org/project/rpi-backlight/) [![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://rpi-backlight.readthedocs.io/en/latest/) @@ -9,7 +9,7 @@ > A Python module for controlling power and brightness of the official Raspberry Pi 7" touch display. -![Example](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/example.gif) +![Example](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/example.gif) **Note:** _This GIF was created using the old v1 API, so please don't use it as API reference 🙂_ @@ -104,12 +104,12 @@ For all available options see [docs](https://rpi-backlight.readthedocs.io/en/lat Open a terminal and run `rpi-backlight-gui`. -![Graphical User Interface](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/gui.png) -![Graphical User Interface (2)](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/gui2.png) +![Graphical User Interface](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/gui.png) +![Graphical User Interface (2)](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/gui2.png) ### Adding a shortcut to the LXDE panel -![Panel result](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/panel_result.png) +![Panel result](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/panel_result.png) See [docs](https://rpi-backlight.readthedocs.io/en/latest/usage.html#adding-a-shortcut-to-the-lxde-panel). diff --git a/rpi_backlight/__init__.py b/rpi_backlight/__init__.py index 2c921ff..4f0b07d 100644 --- a/rpi_backlight/__init__.py +++ b/rpi_backlight/__init__.py @@ -5,7 +5,7 @@ from typing import Any, Callable, Union __author__ = "Linus Groh" -__version__ = "2.0.0b7" +__version__ = "2.0.0" __all__ = ["Backlight"] _BACKLIGHT_SYSFS_PATH = "/sys/class/backlight/rpi_backlight/"