Bump protocol version back down as proto changes are non-breaking

Julia created

Change summary

crates/editor/src/multi_buffer.rs | 1 -
crates/language/src/proto.rs      | 1 -
crates/rpc/src/rpc.rs             | 2 +-
3 files changed, 1 insertion(+), 3 deletions(-)

Detailed changes

crates/editor/src/multi_buffer.rs 🔗

@@ -1755,7 +1755,6 @@ impl MultiBufferSnapshot {
         }
 
         let mut cursor = self.excerpts.cursor::<PointUtf16>();
-        //Cannot not panic if out of bounds as it will just not reach the target position
         cursor.seek(&point.0, Bias::Right, &());
         let overshoot = if let Some(excerpt) = cursor.item() {
             let excerpt_start = excerpt

crates/language/src/proto.rs 🔗

@@ -357,7 +357,6 @@ pub fn deserialize_diagnostics(
         .collect()
 }
 
-//TODO: Deserialize anchors into `Unclipped<Anchor>`?
 pub fn deserialize_anchor(anchor: proto::Anchor) -> Option<Anchor> {
     Some(Anchor {
         timestamp: clock::Local {

crates/rpc/src/rpc.rs 🔗

@@ -6,4 +6,4 @@ pub use conn::Connection;
 pub use peer::*;
 mod macros;
 
-pub const PROTOCOL_VERSION: u32 = 40;
+pub const PROTOCOL_VERSION: u32 = 39;