diff --git a/CHANGELOG.md b/CHANGELOG.md index 0341c8bb..068732e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Rojo Changelog +## Unreleased Changes +* Fixed default port documentation in `rojo serve --help` ([#219](https://github.com/rojo-rbx/rojo/issues/219)) + ## [0.5.0 Alpha 12](https://github.com/rojo-rbx/rojo/releases/tag/v0.5.0-alpha.12) (July 2, 2019) * Added `.meta.json` files * `init.meta.json` files replace `init.model.json` files from Rojo 0.4.x ([#183](https://github.com/rojo-rbx/rojo/pull/183)) diff --git a/server/src/bin.rs b/server/src/bin.rs index 7f5b80e7..2bf96da7 100644 --- a/server/src/bin.rs +++ b/server/src/bin.rs @@ -43,7 +43,7 @@ fn main() { (@subcommand serve => (about: "Serves the project's files for use with the Rojo Studio plugin.") (@arg PROJECT: "Path to the project to serve. Defaults to the current directory.") - (@arg port: --port +takes_value "The port to listen on. Defaults to 8000.") + (@arg port: --port +takes_value "The port to listen on. Defaults to 34872.") ) (@subcommand build =>