From f7dac3f63a485de1cc3c34834a55ddbb8056f21b Mon Sep 17 00:00:00 2001 From: aaron <83140718+centau@users.noreply.github.com> Date: Wed, 9 Oct 2024 02:23:06 +0100 Subject: [PATCH] Bump version to `0.3.1` --- CHANGELOG.md | 3 ++- src/init.luau | 5 ++++- wally.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 805f529..17e7087 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -------------------------------------------------------------------------------- -## Unreleased +## [0.3.1] - 2024-10-09 ### Added - Context functions now also return results. +- `version` table with current version. -------------------------------------------------------------------------------- diff --git a/src/init.luau b/src/init.luau index d2872c7..3bcc7ad 100644 --- a/src/init.luau +++ b/src/init.luau @@ -1,8 +1,9 @@ -------------------------------------------------------------------------------- -- vide.luau --- v0.3.0 -------------------------------------------------------------------------------- +local version = { major = 0, minor = 3, patch = 1 } + if not game then script = require "test/relative-string" end local root = require(script.root) @@ -50,6 +51,8 @@ local stepped = game and game:GetService("RunService").Heartbeat:Connect(functio end) local vide = { + version = version, + -- core root = root, mount = mount, diff --git a/wally.toml b/wally.toml index a22ab5d..4896b08 100644 --- a/wally.toml +++ b/wally.toml @@ -2,7 +2,7 @@ name = "centau/vide" description = "A reactive Luau library for creating UI. " license = "MIT" -version = "0.3.0" +version = "0.3.1" registry = "https://github.com/UpliftGames/wally-index" realm = "shared" include = ["default.project.json", "LICENSE", "src"]