Release v6.0.2

This commit is contained in:
Lucien Greathouse
2021-02-09 11:45:58 -05:00
parent 0e89b91c38
commit b84aab0960
4 changed files with 5 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
# Rojo Changelog
## Unreleased Changes
## [6.0.2](https://github.com/rojo-rbx/rojo/releases/tag/v6.0.2) (February 9, 2021)
* Fixed `rojo upload` to handle CSRF challenges.
## [6.0.1](https://github.com/rojo-rbx/rojo/releases/tag/v6.0.1) (January 22, 2021)

2
Cargo.lock generated
View File

@@ -1961,7 +1961,7 @@ dependencies = [
[[package]]
name = "rojo"
version = "6.0.1"
version = "6.0.2"
dependencies = [
"anyhow",
"backtrace",

View File

@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "6.0.1"
version = "6.0.2"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
description = "Enables professional-grade development tools for Roblox developers"
license = "MPL-2.0"

View File

@@ -5,7 +5,7 @@ local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil
return strict("Config", {
isDevBuild = isDevBuild,
codename = "Epiphany",
version = {6, 0, 1},
version = {6, 0, 2},
expectedServerVersionString = "6.0 or newer",
protocolVersion = 3,
defaultHost = "localhost",