diff --git a/README.md b/README.md index 3765465..c80c333 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ light:handle(Event.SwitchOn) -- warns "Illegal event `SwitchOn` called during st If your project is set up to build with Rojo, the preferred installation method is using [Wally](https://wally.run/). Add this to your `wally.toml` file: ```bash -> StateQ = "busycityguy/stateq@0.0.5" +> StateQ = "busycityguy/stateq@0.0.6" ``` If you're not using Wally, you can add this repository as a submodule of your project by running the following command: diff --git a/src/StateQ/init.luau b/src/StateQ/init.luau index ac91c21..a46e7db 100644 --- a/src/StateQ/init.luau +++ b/src/StateQ/init.luau @@ -25,7 +25,7 @@ --]] --- Version: 0.0.5 +-- Version: 0.0.6 --[[ # What's a finite state machine? diff --git a/wally.toml b/wally.toml index ab8f7eb..c8f2de5 100644 --- a/wally.toml +++ b/wally.toml @@ -1,7 +1,7 @@ [package] name = "busycityguy/stateq" description = "An intuitive fully-typed Finite State Machine in Luau that supports async transitions by queueing events" -version = "0.0.5" +version = "0.0.6" license = "MIT" authors = ["BusyCityGuy"] realm = "shared"