From 139431f94ebb7997603aaa0ebb84eb0e07be6525 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Fri, 16 Feb 2024 20:14:44 +0100 Subject: [PATCH] Initial public version --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8817628 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ + + + +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## `0.0.1` - February 16th, 2024 + +Initial release diff --git a/Cargo.lock b/Cargo.lock index 8369b86..006571d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -372,7 +372,7 @@ dependencies = [ [[package]] name = "mlua-luau-scheduler" -version = "0.0.0" +version = "0.0.1" dependencies = [ "async-executor", "async-fs", diff --git a/Cargo.toml b/Cargo.toml index 71eb7b8..7cf27a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mlua-luau-scheduler" -version = "0.0.0" +version = "0.0.1" edition = "2021" license = "MPL-2.0" repository = "https://github.com/lune-org/mlua-luau-scheduler"