From 013092fff37e79b2f14d7b4f8f064584270af2e3 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 17 Jul 2022 21:35:23 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 44 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26e00f5..849ed9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,47 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1] - 2022-07-17 +### Added +- Notif component that displays a jumping exclamation point +- showAmount boolean to buyable displays +- Tab families now take option to style the tab buttons container +- Utility for creating text of a certain color +### Changed +- Improved typing of player.layers +- Improved typing of createCollapsibleModifierSections's parameters +- Made Particles vue component typed as GenericComponent due to issues generating documentation +- Minimized how much of pixi.js is included in the built site +- Split bundles into smaller bundles for faster loading +- Updated TypeScript +- Descriptions on buyables are now optional +- Improved tooltips performance +- Improved how MainDisplay displays effect strings +- MainDisplays are now sticky +- processComputable now binds uncached functions as well +### Fixed +- trackResetTime stopped working once its layer was removed and re-added +- Runtime compilation was disabled in vite config +- Websites had to be hosted on root directory to have assets load correctly +- Tooltips' persistent ref was lazily created +- In some situations Links would not update its bounding rect +- Achievements' and milestones' onComplete callbacks were firing on load +- Processed JSXFunctions were not considered coercable components by isCoercableComponent +- Error from passing in overlay text to bar component +### Removed +- lodash.cloneDeep dependency, which hasn't been used in awhile +- Some unused configs from vue-cli-service +### Documented +- Update vitepress, and updated the content of many pages +- Rest of /game +- Rest of /data +- layers.tsx +- Any type augmentations to Window object +- Various cleanup of docs comments +- Fixed doc generation being broken from switch to vite +### Tests +- Switched from jest to vitest + ## [0.5.0] - 2022-06-27 ### Added - Projects now cache for offline play, and show notification when an update is available diff --git a/package-lock.json b/package-lock.json index 0820549..a12d4ce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "profectus", - "version": "0.5.0", + "version": "0.5.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "profectus", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { "@pixi/app": "^6.4.2", "@pixi/core": "^6.4.2", diff --git a/package.json b/package.json index 103de9b..4d327dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "profectus", - "version": "0.5.0", + "version": "0.5.1", "private": true, "scripts": { "start": "vite",