Zinc HTTP Components, P3, MQTT and NeoUniversalBinaryJSON now require Pharo 7.0.5 as minimum version
Hi, Here is a little heads up: in order to support Pharo 9, I made a change in a couple of my libraries/frameworks (using Integer #byteAt: instead of #digitAt:) that requires Pharo 7.0.5 (released recently) as minimum version. https://github.com/svenvc/zinc https://github.com/svenvc/P3 https://github.com/svenvc/mqtt https://github.com/svenvc/NeoUniversalBinaryJSON If you are unable or unwilling to upgrade, you can patch this by adding the follow alias to Pharo versions < 7.0.5: Integer>>#byteAt: index ^ self digitAt: index Sven
Thanks Sven.
On 1 Jul 2020, at 13:58, Sven Van Caekenberghe <sven@stfx.eu> wrote:
Hi,
Here is a little heads up: in order to support Pharo 9, I made a change in a couple of my libraries/frameworks (using Integer #byteAt: instead of #digitAt:) that requires Pharo 7.0.5 (released recently) as minimum version.
https://github.com/svenvc/zinc https://github.com/svenvc/P3 https://github.com/svenvc/mqtt https://github.com/svenvc/NeoUniversalBinaryJSON
If you are unable or unwilling to upgrade, you can patch this by adding the follow alias to Pharo versions < 7.0.5:
Integer>>#byteAt: index ^ self digitAt: index
Sven
-------------------------------------------- Stéphane Ducasse http://stephane.ducasse.free.fr / http://www.pharo.org 03 59 35 87 52 Assistant: Aurore Dalle FAX 03 59 57 78 50 TEL 03 59 35 86 16 S. Ducasse - Inria 40, avenue Halley, Parc Scientifique de la Haute Borne, Bât.A, Park Plaza Villeneuve d'Ascq 59650 France
participants (2)
-
Stéphane Ducasse -
Sven Van Caekenberghe