You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
because now flatbuffers have a new version, and if we try to update all the packages from our project, also flatbuffers is updated and this cause a compile issue because OpenMeteo validate the version using:
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
The text was updated successfully, but these errors were encountered:
Hi all,
the Package.swift dependency to flatbuffers needs to be fixed because right now the SDK points to a specified version using "from" parameter:
.package(url: "https://github.com/google/flatbuffers.git", from: "24.3.25")
but this needs to be changed to:
.package(url: "https://github.com/google/flatbuffers.git", exact: "24.3.25")
because now flatbuffers have a new version, and if we try to update all the packages from our project, also flatbuffers is updated and this cause a compile issue because OpenMeteo validate the version using:
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
The text was updated successfully, but these errors were encountered: