diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4368fcb..eb5eefc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
+## 1.0.6 (2021-01-16)
+
+* fix: imports ([215b3c8](https://github.com/simonecorsi/mawesome/commit/215b3c8))
+
+
+
## 1.0.5 (2021-01-16)
+* chore(release): v1.0.5 ([a8d14e1](https://github.com/simonecorsi/mawesome/commit/a8d14e1))
* fix: imports ([1146fe7](https://github.com/simonecorsi/mawesome/commit/1146fe7))
@@ -25,27 +32,3 @@
-## 1.0.1 (2021-01-16)
-
-* chore: action name ([97606aa](https://github.com/simonecorsi/mawesome/commit/97606aa))
-* chore: namings ([6c7acec](https://github.com/simonecorsi/mawesome/commit/6c7acec))
-* chore: post release script ([f9eef3c](https://github.com/simonecorsi/mawesome/commit/f9eef3c))
-* chore(release): 1.0.1 ([6da4af4](https://github.com/simonecorsi/mawesome/commit/6da4af4))
-* chore(release): 1.0.2 ([8ed9343](https://github.com/simonecorsi/mawesome/commit/8ed9343))
-* chore(release): 1.0.3 ([04320c5](https://github.com/simonecorsi/mawesome/commit/04320c5))
-* chore(release): 1.0.4 ([1b7d9cd](https://github.com/simonecorsi/mawesome/commit/1b7d9cd))
-* chore(release): 1.0.5 ([6baa832](https://github.com/simonecorsi/mawesome/commit/6baa832))
-* chore(release): v1.0.1 ([37480ce](https://github.com/simonecorsi/mawesome/commit/37480ce))
-* ci: added github user setup ([9711928](https://github.com/simonecorsi/mawesome/commit/9711928))
-* ci: better release ([e75a669](https://github.com/simonecorsi/mawesome/commit/e75a669))
-* ci(version): prefixed now with v ([9c67c5b](https://github.com/simonecorsi/mawesome/commit/9c67c5b))
-* build: better releasing workflow ([788639d](https://github.com/simonecorsi/mawesome/commit/788639d))
-* build(index.js): build ([6d892e1](https://github.com/simonecorsi/mawesome/commit/6d892e1))
-* fix: variable name ([091060d](https://github.com/simonecorsi/mawesome/commit/091060d))
-* fix(ci): bad syntax ([f6496cd](https://github.com/simonecorsi/mawesome/commit/f6496cd))
-* docs: added readme ([1dca2d1](https://github.com/simonecorsi/mawesome/commit/1dca2d1))
-* feat: generate awesome list from stars ([ef03320](https://github.com/simonecorsi/mawesome/commit/ef03320))
-* Initial commit ([dcd26ff](https://github.com/simonecorsi/mawesome/commit/dcd26ff))
-
-
-
diff --git a/index.js b/index.js
index e5f6fab..236d1ab 100644
--- a/index.js
+++ b/index.js
@@ -21378,12 +21378,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
-var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
-};
Object.defineProperty(exports, "__esModule", ({ value: true }));
const core = __importStar(__nccwpck_require__(2186));
-const exec_1 = __importDefault(__nccwpck_require__(1514));
+const exec = __importStar(__nccwpck_require__(1514));
const { GITHUB_REPOSITORY, GITHUB_REF } = process.env;
const IS_TEST = process.env.NODE_ENV === 'test';
const branch = GITHUB_REF === null || GITHUB_REF === void 0 ? void 0 : GITHUB_REF.replace('refs/heads/', '');
@@ -21408,7 +21405,7 @@ exports.default = new (class Git {
},
},
};
- const exitCode = yield exec_1.default.exec(`git ${command}`, undefined, options);
+ const exitCode = yield exec.exec(`git ${command}`, undefined, options);
if (exitCode === 0) {
return resolve(execOutput);
}
diff --git a/package.json b/package.json
index b844755..28ad7b8 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "mawesome",
- "version": "1.0.5",
+ "version": "1.0.6",
"description": "",
"main": "index.js",
"scripts": {