diff --git a/CHANGELOG.md b/CHANGELOG.md index f5252a0..a07b426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ -## 0.8.0 (2021-10-22) +## 0.8.1 (2021-10-22) * fix: updated mrepo version ([b350143](https://github.com/zMotivat0r/mrepo/commit/b350143)) +* fix(build): cache checker ([e047bf3](https://github.com/zMotivat0r/mrepo/commit/e047bf3)) * fix(build): fixed build all packages ([9649960](https://github.com/zMotivat0r/mrepo/commit/9649960)) * fix(digest): added --withLocalVersions option ([13dad26](https://github.com/zMotivat0r/mrepo/commit/13dad26)) * fix(digest): updated load package.json in install mode ([e3815f6](https://github.com/zMotivat0r/mrepo/commit/e3815f6)) @@ -37,6 +38,7 @@ * chore: release 0.6.1 ([c843693](https://github.com/zMotivat0r/mrepo/commit/c843693)) * chore: release 0.7.0 ([bd2e56b](https://github.com/zMotivat0r/mrepo/commit/bd2e56b)) * chore: release 0.7.1-beta.1 ([f136953](https://github.com/zMotivat0r/mrepo/commit/f136953)) +* chore: release 0.8.0 ([1be14fa](https://github.com/zMotivat0r/mrepo/commit/1be14fa)) * chore(github): added PR and issues templates ([ef40386](https://github.com/zMotivat0r/mrepo/commit/ef40386)) * feat(build): use build cache ([39c0449](https://github.com/zMotivat0r/mrepo/commit/39c0449)) * feat(digest): added distTag option to install ([a3659f3](https://github.com/zMotivat0r/mrepo/commit/a3659f3)) diff --git a/lib/bin/mrepo.js b/lib/bin/mrepo.js old mode 100755 new mode 100644 diff --git a/lib/package.json b/lib/package.json index b236e8a..00343a1 100644 --- a/lib/package.json +++ b/lib/package.json @@ -1,7 +1,7 @@ { "name": "@zmotivat0r/mrepo", "description": "Awesome Typescript Monorepo Generator", - "version": "0.8.0", + "version": "0.8.1", "main": "index.js", "types": "index.d.ts", "bin": { diff --git a/package-lock.json b/package-lock.json index 99c9af1..ee45e0c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mrepo", - "version": "0.8.0", + "version": "0.8.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 91c2918..407feee 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mrepo", "description": "Awesome Typescript Monorepo Generator", - "version": "0.8.0", + "version": "0.8.1", "private": true, "scripts": { "build": "npx tsc -b tsconfig.build.json",