Skip to content

Commit

Permalink
Bump 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BrodaNoel committed Jun 6, 2020
1 parent 2a94e14 commit 422a86f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.0.1

- Support clonning Classes

### 3.0.0

- Clone the object received on `set` (immutable)
Expand Down
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

// Handle Object
if (obj instanceof Object) {
copy = {};
copy = Object.create(Object.getPrototypeOf(obj));
for (var attr in obj) {
if (obj.hasOwnProperty(attr)) copy[attr] = clone(obj[attr]);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "duix",
"version": "3.0.0",
"version": "3.0.1",
"author": {
"name": "Broda Noel",
"email": "[email protected]"
Expand Down

0 comments on commit 422a86f

Please sign in to comment.