From 7c0c5596436aaa62cfad8cb62327efa428228af2 Mon Sep 17 00:00:00 2001 From: LukaDev <47296785+lukadev-0@users.noreply.github.com> Date: Sat, 2 Nov 2024 15:02:25 +0100 Subject: [PATCH] chore: bump all versions --- packages/future/config.toml | 2 +- packages/option/config.toml | 2 +- packages/result/config.toml | 2 +- packages/std/config.toml | 2 +- packages/threadpool/config.toml | 2 +- packages/timer/config.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/future/config.toml b/packages/future/config.toml index db9bbac..62fba79 100644 --- a/packages/future/config.toml +++ b/packages/future/config.toml @@ -1,6 +1,6 @@ name = "future" description = "Future type in Luau" -version = "1.0.0" +version = "1.0.1" types = ["Future"] dependencies = ["option", "threadpool", "std"] diff --git a/packages/option/config.toml b/packages/option/config.toml index ee36065..f66a30a 100644 --- a/packages/option/config.toml +++ b/packages/option/config.toml @@ -1,6 +1,6 @@ name = "option" description = "Option type in Luau" -version = "1.1.0" +version = "1.1.1" types = ["Option"] diff --git a/packages/result/config.toml b/packages/result/config.toml index 643fbcc..f189b3e 100644 --- a/packages/result/config.toml +++ b/packages/result/config.toml @@ -1,6 +1,6 @@ name = "result" description = "Result type in Luau" -version = "1.0.0" +version = "1.0.1" types = ["Result"] diff --git a/packages/std/config.toml b/packages/std/config.toml index 3f9506c..d56ad51 100644 --- a/packages/std/config.toml +++ b/packages/std/config.toml @@ -1,6 +1,6 @@ name = "std" description = "Runtime agnostic access to standard libraries" -version = "1.0.0" +version = "1.0.1" types = ["Runtime", "RuntimeDefinition", "TaskLib"] diff --git a/packages/threadpool/config.toml b/packages/threadpool/config.toml index 0ac3c0b..8710051 100644 --- a/packages/threadpool/config.toml +++ b/packages/threadpool/config.toml @@ -1,6 +1,6 @@ name = "threadpool" description = "Spawn threads using a thread pool" -version = "1.0.0" +version = "1.0.1" dependencies = ["std"] diff --git a/packages/timer/config.toml b/packages/timer/config.toml index a171f67..6667896 100644 --- a/packages/timer/config.toml +++ b/packages/timer/config.toml @@ -1,6 +1,6 @@ name = "timer" description = "Schedule functions to be called at a future time." -version = "1.0.0" +version = "1.0.1" dependencies = ["std", "future", "threadpool"]