From fe15551e629efd064ee3504eed74d14a26467f55 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 27 Jun 2022 08:22:10 -0500 Subject: [PATCH] Version Bump --- CHANGELOG.md | 20 ++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecae588..26e00f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] - 2022-06-27 +### Added +- Projects now cache for offline play, and show notification when an update is available +- Projects can now be "installed" as a Progressive Web App +- Conversions can now be given a custom spend function, which defaults to setting the base resource amount to 0 +- Components for displaying Floor and Square Root symbols +### Changed +- **BREAKING** Several projInfo properties now default to empty strings, to prevent things like reusing project IDs +- **BREAKING** Replaced vue-cli-service with vite (should not break most projects) +- Updated dependencies +- Made all type-only imports explicit +- setupPassiveGeneration now works properly on independent conversions +- setupPassiveGeneration now takes an option cap it can't go over +- Improved typing for PlayerData.layers +- Options Functions have an improved `this` type - it now includes the options themselves +- Removed v-show being used in data/common.tsx +### Tests +- Implement Jest, and running tests automatically on push +- Tests written for utils/common.ts + ## [0.4.2] - 2022-05-23 ### Added - costModifier to conversions diff --git a/package-lock.json b/package-lock.json index 9d85e53..8ea87a9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "profectus", - "version": "0.4.2", + "version": "0.5.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "profectus", - "version": "0.4.2", + "version": "0.5.0", "dependencies": { "@pixi/particle-emitter": "^5.0.4", "@vitejs/plugin-vue": "^2.3.3", diff --git a/package.json b/package.json index 82d9880..44eb680 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "profectus", - "version": "0.4.2", + "version": "0.5.0", "private": true, "scripts": { "start": "vite",