Skip to content

Commit f3483ee

Browse files
committed
0.2.0
1 parent 60a9135 commit f3483ee

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,9 @@
33
## Current Master
44
* *No changes*
55

6+
## 0.2.0
7+
* Support for `init.lua` like rbxfs and rbxpacker
8+
* More robust syncing with a new reconciler
9+
610
## 0.1.0
711
* Initial release, functionally very similar to [rbxfs](https://github.com/LPGhatguy/rbxfs)

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rojo"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
55
description = "A tool to create robust Roblox projects"
66
license = "MIT"

plugin/src/Main.server.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local Plugin = require(script.Parent.Plugin)
77
local function main()
88
local pluginInstance = Plugin.new()
99

10-
local toolbar = plugin:CreateToolbar("Rojo Plugin 0.1.0")
10+
local toolbar = plugin:CreateToolbar("Rojo Plugin 0.2.0")
1111

1212
toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "")
1313
.Click:Connect(function()

0 commit comments

Comments
 (0)