From d3573e5ccb4e4a9f87bf8ec1d3e2086e2963f835 Mon Sep 17 00:00:00 2001 From: Steven Sojka Date: Sun, 17 Jun 2018 06:40:44 -0500 Subject: [PATCH] chore(release): 6.0.0 --- CHANGELOG.md | 21 +++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 955ce25..9efbb1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +# [6.0.0](https://github.com/steelsojka/lodash-decorators/compare/v5.0.1...v6.0.0) (2018-06-17) + + +### Bug Fixes + +* **bindAll:** fix constructor not being called with new ([4e72d0c](https://github.com/steelsojka/lodash-decorators/commit/4e72d0c)) +* **decorators:** don't apply instance decorators when accessing from a ([17caeb6](https://github.com/steelsojka/lodash-decorators/commit/17caeb6)) + + +### BREAKING CHANGES + +* **bindAll:** Properties will use the bind decorator to apply getter/setters +on the prototype instead of the instance. This could cause +issues with consumers currently using the implementain that +assigns the bound properties to the instance through the constructor +rather than on the prototype. The value on the prototype will now be +a getter instead of the original function value. + + + ## [5.0.1](https://github.com/steelsojka/lodash-decorators/compare/v5.0.0...v5.0.1) (2018-06-02) diff --git a/package-lock.json b/package-lock.json index 1555b60..9698972 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "lodash-decorators", - "version": "5.0.1", + "version": "6.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c431f3f..156c07c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "lodash-decorators", "author": "Steven Sojka ", "description": "A collection of decorators using lodash at it's core.", - "version": "5.0.1", + "version": "6.0.0", "engines": { "node": ">=0.12.0" },