diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e44af468..e937be08c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Rojo Changelog ## Unreleased Changes + +## [0.5.0](https://github.com/rojo-rbx/rojo/releases/tag/v0.5.0) (August XX, 2019) * Changed `.model.json` naming, which may require projects to migrate ambiguous cases: * The file name now takes precedence over the `Name` field in the model, like Rojo 0.4.x. * The `Name` field of the top-level instance is now optional. It's recommended that you remove it from your models. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..a3f62a567 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,48 @@ +# Contributing to the Rojo Project +Rojo is a big project and can always use more help! This guide covers all repositories underneath the [rojo-rbx organization on GitHub](https://github.com/rojo-rbx). + +Some of the repositories covered are: + +* https://github.com/rojo-rbx/rojo +* https://github.com/rojo-rbx/rbx-dom +* https://github.com/rojo-rbx/vscode-rojo +* https://github.com/rojo-rbx/rbxlx-to-rojo + +## Code +Code contributions are welcome for features and bugs that have been reported in the project's bug tracker. We want to make sure that no one wastes their time, so be sure to talk with maintainers about what changes would be accepted before doing any work! + +## Documentation +Documentation impacts way more people than the individual lines of code we write. + +If you find any problems in documentation, including typos, bad grammar, misleading phrasing, or missing content, feel free to file issues and pull requests to fix them. + +## Bug Reports and Feature Requests +Most of the tools around Rojo try to be clear when an issue is a bug. Even if they aren't, sometimes things don't work quite right. + +Sometimes there's something that Rojo doesn't do that it probably should. + +Please file issues and we'll try to help figure out what the best way forward is. + +## Pushing a Rojo Release +The Rojo release process is pretty manual right now. If you need to do it, here's how: + +1. Bump server version in [`server/Cargo.toml`](server/Cargo.toml) +2. Bump plugin version in [`plugin/src/Config.lua`](plugin/src/Config.lua) +3. Run `cargo test` to update `Cargo.lock` and double-check tests +4. Update [`CHANGELOG.md`](CHANGELOG.md) +5. Commit! + * `git add . && git commit -m "Release vX.Y.Z"` +6. Tag the commit with the version from `Cargo.toml` prepended with a v, like `v0.4.13` +7. Build Windows release build of CLI + * `cargo build --release` +7. Publish the CLI + * `cargo publish` +8. Build and upload the plugin + * `rojo build plugin -o Rojo.rbxm` + * Upload `Rojo.rbxm` to Roblox.com, keep it for later +9. Push commits and tags + * `git push && git push --tags` +10. Copy GitHub release content from previous release + * Update the leading text with a summary about the release + * Paste the changelog notes (as-is!) from [`CHANGELOG.md`](CHANGELOG.md) + * Write a small summary of each major feature \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index ebc23612a..9bd31bd26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1498,7 +1498,7 @@ dependencies = [ [[package]] name = "rojo" -version = "0.5.0-alpha.13" +version = "0.5.0" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "csv 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1533,7 +1533,7 @@ version = "0.1.0" dependencies = [ "insta 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "paste 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "rojo 0.5.0-alpha.13", + "rojo 0.5.0", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/README.md b/README.md index 70ce6f9d0..c96d5866d 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,8 @@ Soon, Rojo will be able to: If you find any mistakes, feel free to make changes in the [docs](https://github.com/rojo-rbx/rojo/tree/master/docs) folder of this repository and submit a pull request! ## Contributing +Check out our [contribution guide](CONTRIBUTING.md) for detailed instructions for helping work on Rojo! + Pull requests are welcome! Rojo supports Rust 1.34.0 and newer. The minimum supported version of Rust is based on the latest versions of the dependencies that Rojo has. diff --git a/docs/reference/sync-details.md b/docs/reference/sync-details.md index 7c43322af..3caa3da04 100644 --- a/docs/reference/sync-details.md +++ b/docs/reference/sync-details.md @@ -87,7 +87,7 @@ It would turn into instances in this shape: {: align="center" } !!! warning - Starting in Rojo 0.5.0 Beta 1, the `Name` field is no longer required. The name of the top-level instance in a JSON model is now based on its file name, and the `Name` field is now ignored. + Starting in Rojo 0.5.0 (stable), the `Name` field is no longer required. The name of the top-level instance in a JSON model is now based on its file name, and the `Name` field is now ignored. Rojo will emit a warning if the `Name` field is specified and does not match the file's name. diff --git a/plugin/src/Config.lua b/plugin/src/Config.lua index 66cbbc8e3..09cb5eb87 100644 --- a/plugin/src/Config.lua +++ b/plugin/src/Config.lua @@ -1,6 +1,6 @@ return { codename = "Epiphany", - version = {0, 5, 0, "-alpha.13"}, + version = {0, 5, 0}, expectedServerVersionString = "0.5.0 or newer", protocolVersion = 2, defaultHost = "localhost", diff --git a/server/Cargo.toml b/server/Cargo.toml index 6300ce392..10735387a 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "0.5.0-alpha.13" +version = "0.5.0" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" license = "MIT"