Skip to content

Commit

Permalink
Release v7.0.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Feb 20, 2021
1 parent 8bf59e5 commit 78755b6
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased Changes

## [7.0.0-alpha.2][7.0.0-alpha.2] (February 19, 2021)
* Fixed incorrect protocol version between the client and server.

[7.0.0-alpha.2]: https://github.com/rojo-rbx/rojo/releases/tag/v7.0.0-alpha.2

## [7.0.0-alpha.1][7.0.0-alpha.1] (February 18, 2021)
This release includes a brand new implementation of the Roblox DOM. It brings performance improvements, much better support for `rbxl` and `rbxm` files, and a better internal API.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "7.0.0-alpha.1"
version = "7.0.0-alpha.2"
authors = ["Lucien Greathouse <[email protected]>"]
description = "Enables professional-grade development tools for Roblox developers"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/Config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil
return strict("Config", {
isDevBuild = isDevBuild,
codename = "Epiphany",
version = {7, 0, 0, "-alpha.1"},
version = {7, 0, 0, "-alpha.2"},
expectedServerVersionString = "7.0 or newer",
protocolVersion = 4,
defaultHost = "localhost",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
source: tests/tests/serve.rs
expression: redactions.redacted_yaml(info)

---
expectedPlaceIds: ~
projectName: add_folder
protocolVersion: 3
protocolVersion: 4
rootInstanceId: id-2
serverVersion: "[server-version]"
sessionId: id-1

Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
source: tests/tests/serve.rs
expression: redactions.redacted_yaml(info)

---
expectedPlaceIds: ~
projectName: edit_init
protocolVersion: 3
protocolVersion: 4
rootInstanceId: id-2
serverVersion: "[server-version]"
sessionId: id-1

Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
source: tests/tests/serve.rs
expression: redactions.redacted_yaml(info)

---
expectedPlaceIds: ~
projectName: empty
protocolVersion: 3
protocolVersion: 4
rootInstanceId: id-2
serverVersion: "[server-version]"
sessionId: id-1

Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
source: tests/tests/serve.rs
expression: redactions.redacted_yaml(info)

---
expectedPlaceIds: ~
projectName: move_folder_of_stuff
protocolVersion: 3
protocolVersion: 4
rootInstanceId: id-2
serverVersion: "[server-version]"
sessionId: id-1

Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
source: tests/tests/serve.rs
expression: redactions.redacted_yaml(info)

---
expectedPlaceIds: ~
projectName: remove_file
protocolVersion: 3
protocolVersion: 4
rootInstanceId: id-2
serverVersion: "[server-version]"
sessionId: id-1

Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
source: tests/tests/serve.rs
expression: redactions.redacted_yaml(info)

---
expectedPlaceIds: ~
projectName: scripts
protocolVersion: 3
protocolVersion: 4
rootInstanceId: id-2
serverVersion: "[server-version]"
sessionId: id-1

2 changes: 1 addition & 1 deletion src/web/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use crate::{
pub(crate) const SERVER_VERSION: &str = env!("CARGO_PKG_VERSION");

/// Current protocol version, which is required to match.
pub const PROTOCOL_VERSION: u64 = 3;
pub const PROTOCOL_VERSION: u64 = 4;

/// Message returned by Rojo API when a change has occurred.
#[derive(Debug, Serialize, Deserialize)]
Expand Down

0 comments on commit 78755b6

Please sign in to comment.