diff --git a/README.md b/README.md index 1aec218..e666d82 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ light:handle(Event.SwitchOn) -- warns "Illegal event `SwitchOn` called during st ## Rojo users 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: -> StateQ = "busycityguy/stateq@0.0.1" +> StateQ = "busycityguy/stateq@0.0.2" 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 d2ec419..b72e33a 100644 --- a/src/StateQ/init.luau +++ b/src/StateQ/init.luau @@ -25,7 +25,7 @@ --]] --- Version: 0.0.1 +-- Version: 0.0.2 --[[ # What's a finite state machine? diff --git a/wally.toml b/wally.toml index 5248b2c..e314b85 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.1" +version = "0.0.2" license = "MIT" authors = ["BusyCityGuy"] realm = "shared"