diff --git a/HISTORY.md b/HISTORY.md index b6ffc26..7e3bf7f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,10 @@ NOTE: This is only the revision history for my branch of deep-iterator +- 2021-10-25: v2.0.1 + - Fix repo links in package.json + - Add badge to readme + - 2021-10-25: v2.0.0 - Migrated package into an ESM module under Node-16 - Added typescript definitions diff --git a/README.md b/README.md index e41aab5..61f25cf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # deep-iterator +[![npm version](https://badge.fury.io/js/@msamblanet%2Fdeep-iterator.svg)](https://badge.fury.io/js/@msamblanet%2Fdeep-iterator) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) **NOTE:** This is not the original branch for deep-iterator. This is a modified branch maintained by @msamblanet to incoroprate typescript definitions, convert into an ESM module, and bring dependencies up to date. diff --git a/package.json b/package.json index 765c665..49e76f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@msamblanet/deep-iterator", - "version": "2.0.0", + "version": "2.0.1", "description": "Deep iteration of any object or iterable collection. (This version revised by @msablanet)", "type": "module", "main": "src/deep-iterator.js", @@ -11,7 +11,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/couralex/deep-iterator.git" + "url": "git+https://github.com/msamblanet/deep-iterator.git" }, "keywords": [ "iterator", @@ -25,12 +25,12 @@ "bfs", "object" ], - "author": "couralex ", + "author": "couralex , Michael Samblanet ", "license": "MIT", "bugs": { - "url": "https://github.com/couralex/deep-iterator/issues" + "url": "https://github.com/msamblanet/deep-iterator/issues" }, - "homepage": "https://github.com/couralex/deep-iterator#readme", + "homepage": "https://github.com/msamblanet/deep-iterator#readme", "devDependencies": { "chai": "^4.3.4", "eslint": "^8.1.0",