From aa5d43ad17ab5496e97d2abab46b7054632c5dfb Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 10 Apr 2022 23:03:01 -0500 Subject: [PATCH] Version Bump --- CHANGELOG.md | 21 +++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0687eb..6e809bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2022-04-10 +### Added +- conversion.currentAt [#4](https://github.com/profectus-engine/Profectus/pull/4) +- OptionsFunc utility type, improving type inferencing in feature types +- minimumGain property to ResetButton, defaulting to 1 +### Changed +- **BREAKING** Major persistence rework + - Removed makePersistent + - Removed old Persistent, and renamed PersistentRef to Persistent + - createLazyProxy now takes optional base object (replacing use cases for makePersistent) + - Added warnings when creating refs outside a layer + - Added warnings when persistent refs aren't included in their layer object +- **BREAKING** createLayer now takes id as the first param, rather than inside the option function +- resetButton now shows "Req:" instead of "Next:" when conversion.buyMax is false +- Conversion nextAt and currentAt now cap at 0 after reverting modifier +### Fixed +- Independent conversion gain calculation [#4](https://github.com/profectus-engine/Profectus/pull/4) +- Persistence issue when loading layer dynamically +- resetButton's gain and requirement display being incorrect when conversion.buyMax is false +- Independent conversions with buyMax false capping incorrectly + ## [0.2.2] - 2022-04-01 Unironically posting an update on April Fool's Day ;) ### Changed diff --git a/package-lock.json b/package-lock.json index f247ab6..3b34ba3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "profectus", - "version": "0.2.2", + "version": "0.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "profectus", - "version": "0.2.2", + "version": "0.3.0", "dependencies": { "@pixi/particle-emitter": "^5.0.4", "core-js": "^3.6.5", diff --git a/package.json b/package.json index 582ddd3..78077ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "profectus", - "version": "0.2.2", + "version": "0.3.0", "private": true, "scripts": { "start": "vue-cli-service serve",