Bump version to 0.3.1

This commit is contained in:
aaron 2024-10-09 02:23:06 +01:00
parent 6ead93088a
commit f7dac3f63a
3 changed files with 7 additions and 3 deletions

View file

@ -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.
--------------------------------------------------------------------------------

View file

@ -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,

View file

@ -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"]