Skip to content

Commit

Permalink
Bump version to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
centau committed Oct 9, 2024
1 parent 6ead930 commit f7dac3f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

--------------------------------------------------------------------------------

Expand Down
5 changes: 4 additions & 1 deletion src/init.luau
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -50,6 +51,8 @@ local stepped = game and game:GetService("RunService").Heartbeat:Connect(functio
end)

local vide = {
version = version,

-- core
root = root,
mount = mount,
Expand Down
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit f7dac3f

Please sign in to comment.