diff --git a/README.md b/README.md index d6066f9..be6ee64 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -
Asynchronous execution in GML for GameMaker Studio 2.3.6 and above by @jujuadams
diff --git a/options/windows/options_windows.yy b/options/windows/options_windows.yy index 5909d63..4020457 100644 --- a/options/windows/options_windows.yy +++ b/options/windows/options_windows.yy @@ -1,7 +1,7 @@ { "option_windows_display_name": "Coroutines", "option_windows_executable_name": "${project_name}.exe", - "option_windows_version": "1.0.0.0", + "option_windows_version": "1.1.0.0", "option_windows_company_info": "@jujuadams", "option_windows_product_info": "Coroutines", "option_windows_copyright_info": "@jujuadams (c) 2021", diff --git a/scripts/__CoroutinesSystem/__CoroutinesSystem.gml b/scripts/__CoroutinesSystem/__CoroutinesSystem.gml index 0111bbd..26507d6 100644 --- a/scripts/__CoroutinesSystem/__CoroutinesSystem.gml +++ b/scripts/__CoroutinesSystem/__CoroutinesSystem.gml @@ -1,5 +1,5 @@ -#macro __COROUTINES_VERSION "1.0.0" -#macro __COROUTINES_DATE "2021-12-05" +#macro __COROUTINES_VERSION "1.1.0" +#macro __COROUTINES_DATE "2021-12-10" show_debug_message("Welcome to Coroutines by @jujuadams! This is version " + __COROUTINES_VERSION + ", " + __COROUTINES_DATE);