22Changelog
33=========
44
5+ .. currentmodule :: gpiozero
6+
7+
8+ Release 1.1.0 (2016-02-08)
9+ ==========================
10+
11+ * Documentation converted to reST and expanded to include generic classes
12+ and several more recipes (`#80 `_, `#82 `_, `#101 `_, `#119 `_, `#135 `_, `#168 `_)
13+ * New :class: `LEDBarGraph ` class (many thanks to Martin O'Hanlon!) (`#126 `_,
14+ `#176 `_)
15+ * New :class: `Pin ` implementation abstracts out the concept of a GPIO pin
16+ paving the way for alternate library support and IO extenders in future
17+ (`#141 `_)
18+ * New :meth: `LEDBoard.blink ` method which works properly even when background
19+ is set to ``False `` (`#94 `_, `#161 `_)
20+ * New :meth: `RGBLED.blink ` method which implements (rudimentary) color fading
21+ too! (`#135 `_, `#174 `_)
22+ * New ``initial_value `` attribute on :class: `OutputDevice ` ensures consistent
23+ behaviour on construction (`#118 `_)
24+ * New ``active_high `` attribute on :class: `PWMOutputDevice ` and :class: `RGBLED `
25+ allows use of common anode devices (`#143 `_, `#154 `_)
26+ * Loads of new ADC chips supported (many thanks to GitHub user pcopa!)
27+ (`#150 `_)
28+
29+ .. _#80 : https://github.com/RPi-Distro/python-gpiozero/issues/80
30+ .. _#82 : https://github.com/RPi-Distro/python-gpiozero/issues/82
31+ .. _#94 : https://github.com/RPi-Distro/python-gpiozero/issues/94
32+ .. _#101 : https://github.com/RPi-Distro/python-gpiozero/issues/101
33+ .. _#118 : https://github.com/RPi-Distro/python-gpiozero/issues/118
34+ .. _#119 : https://github.com/RPi-Distro/python-gpiozero/issues/119
35+ .. _#126 : https://github.com/RPi-Distro/python-gpiozero/issues/126
36+ .. _#135 : https://github.com/RPi-Distro/python-gpiozero/issues/135
37+ .. _#141 : https://github.com/RPi-Distro/python-gpiozero/issues/141
38+ .. _#143 : https://github.com/RPi-Distro/python-gpiozero/issues/143
39+ .. _#150 : https://github.com/RPi-Distro/python-gpiozero/issues/150
40+ .. _#154 : https://github.com/RPi-Distro/python-gpiozero/issues/154
41+ .. _#161 : https://github.com/RPi-Distro/python-gpiozero/issues/161
42+ .. _#168 : https://github.com/RPi-Distro/python-gpiozero/issues/168
43+ .. _#174 : https://github.com/RPi-Distro/python-gpiozero/issues/174
44+ .. _#176 : https://github.com/RPi-Distro/python-gpiozero/issues/176
45+
546Release 1.0.0 (2015-11-16)
647==========================
748
849* Debian packaging added (`#44 `_)
9- * :class: `~gpiozero. PWMLED ` class added (`#58 `_)
50+ * :class: `PWMLED ` class added (`#58 `_)
1051* ``TemperatureSensor `` removed pending further work (`#93 `_)
11- * :meth: `~gpiozero. Buzzer.beep ` alias method added (`#75 `_)
12- * :class: `~gpiozero. Motor ` PWM devices exposed, and :class: `~gpiozero. Robot `
13- motor devices exposed (`#107 `_)
52+ * :meth: `Buzzer.beep ` alias method added (`#75 `_)
53+ * :class: `Motor ` PWM devices exposed, and :class: `Robot ` motor devices exposed
54+ (`#107 `_)
1455
1556.. _#44 : https://github.com/RPi-Distro/python-gpiozero/issues/44
1657.. _#58 : https://github.com/RPi-Distro/python-gpiozero/issues/58
@@ -24,7 +65,7 @@ Release 0.9.0 (2015-10-25)
2465Fourth public beta
2566
2667* Added source and values properties to all relevant classes (`#76 `_)
27- * Fix names of parameters in :class: `~gpiozero. Motor ` constructor (`#79 `_)
68+ * Fix names of parameters in :class: `Motor ` constructor (`#79 `_)
2869* Added wrappers for LED groups on add-on boards (`#81 `_)
2970
3071.. _#76 : https://github.com/RPi-Distro/python-gpiozero/issues/76
@@ -36,10 +77,9 @@ Release 0.8.0 (2015-10-16)
3677
3778Third public beta
3879
39- * Added generic :class: `~gpiozero.AnalogInputDevice ` class along with specific
40- classes for the :class: `~gpiozero.MCP3008 ` and :class: `~gpiozero.MCP3004 `
41- (`#41 `_)
42- * Fixed :meth: `~gpiozero.DigitalOutputDevice.blink ` (`#57 `_)
80+ * Added generic :class: `AnalogInputDevice ` class along with specific classes
81+ for the :class: `MCP3008 ` and :class: `MCP3004 ` (`#41 `_)
82+ * Fixed :meth: `DigitalOutputDevice.blink ` (`#57 `_)
4383
4484.. _#41 : https://github.com/RPi-Distro/python-gpiozero/issues/41
4585.. _#57 : https://github.com/RPi-Distro/python-gpiozero/issues/57
0 commit comments