Problem with Wire version for NANO 33 IoT

Hi all,
I'm using IDE 1.8.13 for NANO 33 IoT (reinstalled on this morning) and it seems there is a problem with the Wire library version, the error is:

'class TwoWire' has no member named 'setWireTimeout'; did you mean 'setTimeout'?

when trying to compile an ultra simple sketch:

#include <Wire.h>
void setup() {
  Wire.begin();
  Wire.setWireTimeout(25000, true);
  Wire.end();
}

void loop() {
  // put your main code here, to run repeatedly:

}

It seems to get an old library, I see that in a detailed error message:

Utilisation de la bibliothèque Wire version 1.0 dans le dossier:
C:\Users\xxx\AppData\Local\Arduino15\packages\arduino\hardware\samd\1.8.6\libraries\Wire

What should I do ?

I have just installed the latest version for samd21 cards (1.8.9) but it is still the same version of Wire, so the problem is still here...
Does it mean the wire library for samd 21 is not up to date for the timeout issue ?