diff --git a/README.md b/README.md index 4c2aa92..6426e26 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ If you already have a "`lune`", "`.lune`", or similar directory in your project ]] -- You set the following string to "latest" (case insensitive), or any version tag --- on Wax's releases page (e.g. "0.3.5") +-- on Wax's releases page (e.g. "0.3.6") local WaxVersion = "latest" ------------------------------------------------------------------------------- @@ -103,7 +103,7 @@ luau.load(net.request(FileLink).body, { From your terminal in the root directory of your project, run `lune wax`, or just `lune ` ``` -Wax 0.3.5 +Wax 0.3.6 A Fast Runtime Lua 5.1x+/Luau Project Bundler, Using Roblox Models and Module-Require Semantics USAGE: diff --git a/lune/lib/data/Version.luau b/lune/lib/data/Version.luau index 3e50c42..5c8872b 100644 --- a/lune/lib/data/Version.luau +++ b/lune/lib/data/Version.luau @@ -1 +1 @@ -return "0.3.5" +return "0.3.6" diff --git a/lune/wax-remote.luau b/lune/wax-remote.luau index e03711d..7e50e25 100644 --- a/lune/wax-remote.luau +++ b/lune/wax-remote.luau @@ -4,7 +4,7 @@ ]] -- You set the following string to "latest" (case insensitive), or any version tag --- on Wax's releases page (e.g. "0.3.5") +-- on Wax's releases page (e.g. "0.3.6") local WaxVersion = "latest" -------------------------------------------------------------------------------