mirror of
https://github.com/centau/vide.git
synced 2026-08-20 14:41:37 +00:00
Bump version to 0.3.1
This commit is contained in:
parent
6ead93088a
commit
f7dac3f63a
3 changed files with 7 additions and 3 deletions
|
|
@ -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
|
### Added
|
||||||
|
|
||||||
- Context functions now also return results.
|
- Context functions now also return results.
|
||||||
|
- `version` table with current version.
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
-- vide.luau
|
-- vide.luau
|
||||||
-- v0.3.0
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
local version = { major = 0, minor = 3, patch = 1 }
|
||||||
|
|
||||||
if not game then script = require "test/relative-string" end
|
if not game then script = require "test/relative-string" end
|
||||||
|
|
||||||
local root = require(script.root)
|
local root = require(script.root)
|
||||||
|
|
@ -50,6 +51,8 @@ local stepped = game and game:GetService("RunService").Heartbeat:Connect(functio
|
||||||
end)
|
end)
|
||||||
|
|
||||||
local vide = {
|
local vide = {
|
||||||
|
version = version,
|
||||||
|
|
||||||
-- core
|
-- core
|
||||||
root = root,
|
root = root,
|
||||||
mount = mount,
|
mount = mount,
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
name = "centau/vide"
|
name = "centau/vide"
|
||||||
description = "A reactive Luau library for creating UI. "
|
description = "A reactive Luau library for creating UI. "
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
registry = "https://github.com/UpliftGames/wally-index"
|
registry = "https://github.com/UpliftGames/wally-index"
|
||||||
realm = "shared"
|
realm = "shared"
|
||||||
include = ["default.project.json", "LICENSE", "src"]
|
include = ["default.project.json", "LICENSE", "src"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue