collab: Bump minimal client version to 0.127.3 (#9649)

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-03-21 18:23:18 +01:00 committed by GitHub
parent e07192e4e3
commit cd61297740
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,7 @@ impl fmt::Display for ZedVersion {
impl ZedVersion {
pub fn can_collaborate(&self) -> bool {
self.0 >= semver(0, 127, 3) || (self.0 >= semver(0, 126, 3) && self.0 < semver(0, 127, 0))
self.0 >= semver(0, 127, 3)
}
}