Skip to content

Commit 598d837

Browse files
committed
Add details about v1.6.2
...and correct docs referring to 1.6.0 as the last version supporting Python 2
1 parent d055b76 commit 598d837

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ Python 2 support
128128

129129
.. warning::
130130

131-
Version 1.6.0 of GPIO Zero is the last to support Python 2. The next release
132-
will be Version 2.0.0 and will support Python 3 only.
131+
GPIO Zero 1.6.x is the last to support Python 2. GPIO Zero 2.x will support
132+
Python 3 only.
133133

134134
Contributors
135135
============

docs/api_pins.rst

+2
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ they are tried by default.
134134
+=========+===============================================+===========================================+
135135
| rpigpio | :class:`gpiozero.pins.rpigpio.RPiGPIOFactory` | :class:`gpiozero.pins.rpigpio.RPiGPIOPin` |
136136
+---------+-----------------------------------------------+-------------------------------------------+
137+
| lgpio | :class:`gpiozero.pins.lgpio.LGPIOFactory` | :class:`gpiozero.pins.lgpio.LGPIOPin` |
138+
+---------+-----------------------------------------------+-------------------------------------------+
137139
| rpio | :class:`gpiozero.pins.rpio.RPIOFactory` | :class:`gpiozero.pins.rpio.RPIOPin` |
138140
+---------+-----------------------------------------------+-------------------------------------------+
139141
| pigpio | :class:`gpiozero.pins.pigpio.PiGPIOFactory` | :class:`gpiozero.pins.pigpio.PiGPIOPin` |

docs/changelog.rst

+9-5
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,20 @@ Changelog
1212

1313
.. currentmodule:: gpiozero
1414

15+
Release 1.6.2 (2021-03-18)
16+
==========================
17+
18+
* Correct docs referring to 1.6.0 as the last version supporting Python 2
19+
20+
.. warning::
21+
22+
This is the last release to support Python 2
23+
1524
Release 1.6.1 (2021-03-17)
1625
==========================
1726

1827
* Fix missing font files for 7-segment displays
1928

20-
2129
Release 1.6.0 (2021-03-14)
2230
==========================
2331

@@ -54,10 +62,6 @@ Release 1.6.0 (2021-03-14)
5462
* Added USB3 and Ethernet speed attributes to :func:`pi_info`
5563
* Various docs updates
5664

57-
.. warning::
58-
59-
This is the last release to support Python 2
60-
6165
.. _lgpio: http://abyz.me.uk/lg/py_lgpio.html
6266
.. _#482: https://github.com/gpiozero/gpiozero/issues/482
6367
.. _#928: https://github.com/gpiozero/gpiozero/issues/928

docs/contributing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ Python 2/3
6969
==========
7070

7171
The library is 100% compatible with both Python 2.7 and Python 3 from version
72-
3.2 onwards. Since Python 2 is now past its `end-of-life`_, the 1.6.0 release
73-
(2021-03-14) is the last to support Python 2.
72+
3.2 onwards. Since Python 2 is now past its `end-of-life`_, the 1.6.2 release
73+
(2021-03-18) is the last to support Python 2.
7474

7575

7676
.. _docs: https://github.com/gpiozero/gpiozero/tree/master/docs

docs/faq.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ version of gpiozero is available in your Python environment like so:
213213
214214
>>> from pkg_resources import require
215215
>>> require('gpiozero')
216-
[gpiozero 1.6.0 (/usr/lib/python3/dist-packages)]
216+
[gpiozero 1.6.2 (/usr/lib/python3/dist-packages)]
217217
>>> require('gpiozero')[0].version
218-
'1.6.0'
218+
'1.6.2'
219219
220220
If you have multiple versions installed (e.g. from :command:`pip` and
221221
:command:`apt`) they will not show up in the list returned by the

0 commit comments

Comments
 (0)