diff --git a/CHANGELOG.md b/CHANGELOG.md index 97371a6..0e0a9a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2022-03-27 +### Added +- Particles feature +- Collapsible layout component +- Utility function for splitting off the first from the list of features that meets a given filter +### Changed +- **BREAKING** Reworked most of the code from Links into a generic Context component that manages the positions of features in the DOM +- Updated vue-cli and TS dependencies +- Challenges cannot be started when maxed, and `canStart` now defaults to `true` +- onClick listeners on various features now get passed a MouseEvent or TouchEvent when possible +- Minor style changes to Milestones, most notably removing min-height +### Fixed +- Buyables didn't support CoercableComponents for displays +- TreeNodes would have a double glow effect on hover +### Removed +- Unused mousemove listener attached to App.vue + ## [0.1.4] - 2022-03-13 ### Added - You can now access this.on() from within a createLayer function (and other BaseLayer properties) diff --git a/package-lock.json b/package-lock.json index 5912039..32c364f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "profectus", - "version": "0.1.4", + "version": "0.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "profectus", - "version": "0.1.4", + "version": "0.2.0", "dependencies": { "core-js": "^3.6.5", "lodash.clonedeep": "^4.5.0", diff --git a/package.json b/package.json index eac5254..31cf12f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "profectus", - "version": "0.1.4", + "version": "0.2.0", "private": true, "scripts": { "start": "vue-cli-service serve",