diff --git a/CHANGELOG.md b/CHANGELOG.md index 24d7c63..2e1fdfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,73 +1,78 @@ +## 1.0.7 (August 3, 2019) + +- Update all dependencies. +- Fix ESLint error in tests. + ## [1.0.6](https://github.com/svipben/cachimo/releases/tag/1.0.6) (2018-04-15) ### Added -* `jsconfig.json` file which represents project structure. -* `yarn-error.log` in `.gitignore`. +- `jsconfig.json` file which represents project structure. +- `yarn-error.log` in `.gitignore`. ### Changed -* ⬆️ ESLint to 4.19.1. -* ⬆️ Jest to 22.4.3. +- ⬆️ ESLint to 4.19.1. +- ⬆️ Jest to 22.4.3. ### Removed -* logo from `README.md`. +- logo from `README.md`. ## [1.0.5](https://github.com/svipben/cachimo/releases/tag/1.0.5) (2018-03-10) -* Renamed `index.d.ts` to `cachimo.d.ts` and moved it to `src` dir. -* Deleted `index.js` and changed `main` in `package.json` to the `src/cachimo.js` -* Reduced logo width and height. -* ⬆️ `keywords` in `package.json` -* ⬆️ ESLint to 4.18.2 -* ⬆️ Jest to 22.4.2 +- Renamed `index.d.ts` to `cachimo.d.ts` and moved it to `src` dir. +- Deleted `index.js` and changed `main` in `package.json` to the `src/cachimo.js` +- Reduced logo width and height. +- ⬆️ `keywords` in `package.json` +- ⬆️ ESLint to 4.18.2 +- ⬆️ Jest to 22.4.2 ## [1.0.4](https://github.com/svipben/cachimo/releases/tag/1.0.4) (2018-02-17) ### Added -* `typings` property in `package.json`. +- `typings` property in `package.json`. ### Changed -* `clear()` function to also reject Promise or execute callback to inform if timeout was cleared. -* `README.md` to show how new `clear()` function works. -* Travis CI to also run ESLint before tests. -* Travis CI to disable email notifications. -* Tests to be more isolated. -* Moved all `index.js` code to the `src/cachimo.js`. +- `clear()` function to also reject Promise or execute callback to inform if timeout was cleared. +- `README.md` to show how new `clear()` function works. +- Travis CI to also run ESLint before tests. +- Travis CI to disable email notifications. +- Tests to be more isolated. +- Moved all `index.js` code to the `src/cachimo.js`. ### Updated -* ⬆️ ESLint to 4.18.0 -* ⬆️ Jest to 22.3.0 +- ⬆️ ESLint to 4.18.0 +- ⬆️ Jest to 22.3.0 ## [1.0.3](https://github.com/svipben/cachimo/releases/tag/1.0.3) (2018-02-17) ### Added -* Travis CI. -* Build status and NPM version badges in `README.md`. +- Travis CI. +- Build status and NPM version badges in `README.md`. ### Changed -* `clear()` clears all timeouts as well. [#1](https://github.com/svipben/cachimo/issues/1) +- `clear()` clears all timeouts as well. [#1](https://github.com/svipben/cachimo/issues/1) ## [1.0.2](https://github.com/svipben/cachimo/releases/tag/1.0.2) (2018-02-07) ### Added -* `CHANGELOG.md`. -* TypeScript declaration file (`index.d.ts`). +- `CHANGELOG.md`. +- TypeScript declaration file (`index.d.ts`). ### Changed -* Minor change in `put(...)` JSDoc. -* `Error` to `TypeError` in `put(...)`. -* Logo to the new one. 😊 -* `package.json` description to have dot at the end. 😑 +- Minor change in `put(...)` JSDoc. +- `Error` to `TypeError` in `put(...)`. +- Logo to the new one. 😊 +- `package.json` description to have dot at the end. 😑 ## [1.0.1](https://github.com/svipben/cachimo/releases/tag/1.0.1) (2018-02-01) -* Initial release. +- Initial release. diff --git a/package.json b/package.json index dd2acb1..4c27f93 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cachimo", "description": "Stores key with value in-memory and can be deleted manually or after given timeout.", - "version": "1.0.6", + "version": "1.0.7", "main": "src/cachimo.js", "typings": "src/cachimo.d.ts", "repository": "https://github.com/svipben/cachimo.git",