From aa853de8188459da98bf9a254dde4b19d3ec60e9 Mon Sep 17 00:00:00 2001 From: Marcus Date: Sun, 7 Jul 2024 04:59:44 +0200 Subject: [PATCH] Release 0.2.2 (#64) * Bump package versions * Fix typo --- CHANGELOG.md | 3 +++ package.json | 11 +++-------- wally.toml | 6 +++--- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a3a52b..3ff6423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog][kac], and this project adheres to ## [Unreleased] +## [0.2.2] - 2024-07-07 + ### Added - Added `query:replace(function(...T) return ...U end)` for replacing components in place @@ -105,6 +107,7 @@ The format is based on [Keep a Changelog][kac], and this project adheres to - Initial release [unreleased]: https://github.com/ukendio/jecs/compare/v0.0.0.0-prototype.rc.2...HEAD +[0.2.2]: https://github.com/ukendio/jecs/releases/tag/v0.2.2 [0.2.1]: https://github.com/ukendio/jecs/releases/tag/v0.2.1 [0.2.0]: https://github.com/ukendio/jecs/releases/tag/v0.2.0 [0.1.1]: https://github.com/ukendio/jecs/releases/tag/v0.1.1 diff --git a/package.json b/package.json index ce2b802..e97c406 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,12 @@ { "name": "@rbxts/jecs", - "version": "0.1.0", + "version": "0.2.2", "description": "Stupidly fast Entity Component System", - "main": "lib/init.lua", + "main": "src/init.luau", "repository": { "type": "git", "url": "https://github.com/ukendio/jecs.git" }, - "scripts": { - "build": "rbxtsc", - "watch": "rbxtsc -w", - "prepublishOnly": "npm run build" - }, "keywords": [], "author": "Ukendio", "contributors": [ @@ -22,7 +17,7 @@ "license": "MIT", "types": "lib/index.d.ts", "files": [ - "lib/" + "src/" ], "publishConfig": { "access": "public" diff --git a/wally.toml b/wally.toml index c81bb8a..a9bc3e3 100644 --- a/wally.toml +++ b/wally.toml @@ -1,8 +1,8 @@ [package] name = "ukendio/jecs" -version = "0.2.1" +version = "0.2.2" registry = "https://github.com/UpliftGames/wally-index" realm = "shared" -include = ["default.project.json", "src/**", +include = ["default.project.json", "src/**", "src", "wally.toml", "README.md", "CHANGELOG.md"] -exclude = ["**"] \ No newline at end of file +exclude = ["**"]