From b33abef2ca463cf71cb1bd77b557ecab757138f7 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 2 Apr 2024 17:38:48 +0530 Subject: [PATCH] chore(pkg): rusty-luau v0.1.0 The very first release of rusty-luau. - Initial `Option` & `Result` implementations --- .gitignore | 1 + CHANGELOG.md | 15 +++++++++++++++ aftman.toml | 1 + 3 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0b82408 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +Packages/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..da80740 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ + + + +# 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.1.0` - April 2nd, 2024 + +The very first release of rusty-luau. + +- Initial `Option` & `Result` implementations diff --git a/aftman.toml b/aftman.toml index 208aba1..5a6125c 100644 --- a/aftman.toml +++ b/aftman.toml @@ -3,3 +3,4 @@ lune = "lune-org/lune@0.8.2" stylua = "JohnnyMorganz/StyLua@0.20.0" luau-lsp = "JohnnyMorganz/luau-lsp@1.27.0" darklua = "seaofvoices/darklua@0.13.0" +wally = "UpliftGames/wally@0.3.2"