From d13ef7316541882af9dd102a1aacec08f400f93a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C6=B0=C6=A1ng=20Quang=20M=E1=BA=A1nh?= Date: Sun, 19 Jul 2020 18:28:20 +0700 Subject: [PATCH] Bump version to 2.0.0 --- README.md | 11 ++++++----- package.json | 2 +- tests/index.test.ts | 3 +++ 3 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 tests/index.test.ts diff --git a/README.md b/README.md index f31d5b4..41e9209 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,13 @@ Minimalistic web crawler for Node.js - With npm: ```sh -npm i @albert-team/spiderman +$ npm i @albert-team/spiderman ``` - With yarn: ```sh -yarn add @albert-team/spiderman +$ yarn add @albert-team/spiderman ``` ## USAGE @@ -38,10 +38,11 @@ See [here](https://github.com/albert-team/spiderman/blob/master/examples). Read more [here](https://albert-team.github.io/spiderman). -## Changelog +## Changelogs -Read more [here](https://github.com/albert-team/spiderman/blob/master/CHANGELOG.md). +For the latest major version, read more [here](https://github.com/albert-team/spiderman/blob/master/changelogs/v2.md). +For older versions, read more [here](https://github.com/albert-team/spiderman/tree/master/changelogs). -## Todo +## Todos Read more [here](https://github.com/albert-team/spiderman/blob/master/TODO.md). diff --git a/package.json b/package.json index dbbb640..b4b9f9c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@albert-team/spiderman", "description": "Minimalistic web crawler for Node.js", - "version": "1.15.0", + "version": "2.0.0", "license": "MIT", "author": "Albert Team", "repository": "github:albert-team/spiderman", diff --git a/tests/index.test.ts b/tests/index.test.ts new file mode 100644 index 0000000..e43bd54 --- /dev/null +++ b/tests/index.test.ts @@ -0,0 +1,3 @@ +test('A dumb test', () => { + expect(true).toBeTruthy() +})