diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fddcb56..16cc181f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Bug Fixes + +* **plugin-export:** correct logic for transpiled files ([e68d09b](https://github.com/Igmat/baset/commit/e68d09b)) +* **plugin-ts:** correct handling of inline options ([f0be6bd](https://github.com/Igmat/baset/commit/f0be6bd)) +* **plugin-ts:** using ts-node instead of manual tsc calls ([5292042](https://github.com/Igmat/baset/commit/5292042)), closes [#6](https://github.com/Igmat/baset/issues/6) + + +### Features + +* **plugin-ts:** initial implementation of baset-plugin-ts ([2b041ee](https://github.com/Igmat/baset/commit/2b041ee)) +* **solution:** plugins architecture initial implementation ([92f598c](https://github.com/Igmat/baset/commit/92f598c)), closes [#5](https://github.com/Igmat/baset/issues/5) + + + + ## [0.4.1](https://github.com/Igmat/baset/compare/v0.4.0...v0.4.1) (2018-01-24) diff --git a/lerna.json b/lerna.json index 67e06573..197c558e 100644 --- a/lerna.json +++ b/lerna.json @@ -4,7 +4,7 @@ "./packages/*", "./tests/*" ], - "version": "0.4.1", + "version": "0.5.0", "commands": { "publish": { "allowBranch": "master", diff --git a/packages/baset-cli/CHANGELOG.md b/packages/baset-cli/CHANGELOG.md index 4bc4e81b..2916fe03 100644 --- a/packages/baset-cli/CHANGELOG.md +++ b/packages/baset-cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Features + +* **solution:** plugins architecture initial implementation ([92f598c](https://github.com/Igmat/baset/commit/92f598c)), closes [#5](https://github.com/Igmat/baset/issues/5) + + + + ## [0.4.1](https://github.com/Igmat/baset/compare/v0.4.0...v0.4.1) (2018-01-24) diff --git a/packages/baset-cli/package.json b/packages/baset-cli/package.json index e8a0d80e..9a8d435f 100644 --- a/packages/baset-cli/package.json +++ b/packages/baset-cli/package.json @@ -1,6 +1,6 @@ { "name": "baset-cli", - "version": "0.4.1", + "version": "0.5.0", "description": "CLI for BaseT project.", "keywords": [ "baset-cli", @@ -28,13 +28,13 @@ "@types/glob": "^5.0.34", "@types/node": "^9.3.0", "@types/yargs": "^10.0.1", - "baset": "^0.4.1", + "baset": "^0.5.0", "doctoc": "^1.3.0", "tslint": "^5.9.1", "typescript": "^2.6.2" }, "dependencies": { - "baset-core": "^0.4.1", + "baset-core": "^0.5.0", "find-up": "^2.1.0", "glob": "^7.1.2", "glob-promise": "^3.3.0", diff --git a/packages/baset-core/CHANGELOG.md b/packages/baset-core/CHANGELOG.md index 0daf6ab9..205d8939 100644 --- a/packages/baset-core/CHANGELOG.md +++ b/packages/baset-core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Features + +* **solution:** plugins architecture initial implementation ([92f598c](https://github.com/Igmat/baset/commit/92f598c)), closes [#5](https://github.com/Igmat/baset/issues/5) + + + + ## [0.4.1](https://github.com/Igmat/baset/compare/v0.4.0...v0.4.1) (2018-01-24) diff --git a/packages/baset-core/package.json b/packages/baset-core/package.json index 854e58de..588761ff 100644 --- a/packages/baset-core/package.json +++ b/packages/baset-core/package.json @@ -1,6 +1,6 @@ { "name": "baset-core", - "version": "0.4.1", + "version": "0.5.0", "description": "Core library for BaseT project.", "keywords": [ "baset-core", @@ -25,7 +25,7 @@ "license": "MIT", "devDependencies": { "@types/node": "^9.3.0", - "baset": "^0.4.1", + "baset": "^0.5.0", "doctoc": "^1.3.0", "tslint": "^5.9.1", "typescript": "^2.6.2" diff --git a/packages/baset-plugin-export/CHANGELOG.md b/packages/baset-plugin-export/CHANGELOG.md new file mode 100644 index 00000000..79c7be76 --- /dev/null +++ b/packages/baset-plugin-export/CHANGELOG.md @@ -0,0 +1,18 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Bug Fixes + +* **plugin-export:** correct logic for transpiled files ([e68d09b](https://github.com/Igmat/baset/commit/e68d09b)) +* **plugin-ts:** using ts-node instead of manual tsc calls ([5292042](https://github.com/Igmat/baset/commit/5292042)), closes [#6](https://github.com/Igmat/baset/issues/6) + + +### Features + +* **solution:** plugins architecture initial implementation ([92f598c](https://github.com/Igmat/baset/commit/92f598c)), closes [#5](https://github.com/Igmat/baset/issues/5) diff --git a/packages/baset-plugin-export/package.json b/packages/baset-plugin-export/package.json index e3715ece..c1b819b0 100644 --- a/packages/baset-plugin-export/package.json +++ b/packages/baset-plugin-export/package.json @@ -1,6 +1,6 @@ { "name": "baset-plugin-export", - "version": "0.4.1", + "version": "0.5.0", "description": "Export plugin for BaseT project.", "keywords": [ "baset-plugin-export", @@ -25,7 +25,7 @@ "license": "MIT", "devDependencies": { "@types/node": "^9.3.0", - "baset": "^0.4.1", + "baset": "^0.5.0", "doctoc": "^1.3.0", "tslint": "^5.9.1", "typescript": "^2.6.2" diff --git a/packages/baset-plugin-ts/CHANGELOG.md b/packages/baset-plugin-ts/CHANGELOG.md new file mode 100644 index 00000000..fbaaf986 --- /dev/null +++ b/packages/baset-plugin-ts/CHANGELOG.md @@ -0,0 +1,18 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Bug Fixes + +* **plugin-ts:** correct handling of inline options ([f0be6bd](https://github.com/Igmat/baset/commit/f0be6bd)) +* **plugin-ts:** using ts-node instead of manual tsc calls ([5292042](https://github.com/Igmat/baset/commit/5292042)), closes [#6](https://github.com/Igmat/baset/issues/6) + + +### Features + +* **plugin-ts:** initial implementation of baset-plugin-ts ([2b041ee](https://github.com/Igmat/baset/commit/2b041ee)) diff --git a/packages/baset-plugin-ts/package.json b/packages/baset-plugin-ts/package.json index b1c29d39..5b020f04 100644 --- a/packages/baset-plugin-ts/package.json +++ b/packages/baset-plugin-ts/package.json @@ -1,6 +1,6 @@ { "name": "baset-plugin-ts", - "version": "0.4.1", + "version": "0.5.0", "description": "TypeScript plugin for BaseT project.", "keywords": [ "baset-plugin-ts", @@ -26,7 +26,7 @@ "license": "MIT", "devDependencies": { "@types/node": "^9.3.0", - "baset": "^0.4.1", + "baset": "^0.5.0", "doctoc": "^1.3.0", "tslint": "^5.9.1", "typescript": "^2.6.2" diff --git a/packages/baset/CHANGELOG.md b/packages/baset/CHANGELOG.md index 72f23fe6..9012bdc7 100644 --- a/packages/baset/CHANGELOG.md +++ b/packages/baset/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Features + +* **solution:** plugins architecture initial implementation ([92f598c](https://github.com/Igmat/baset/commit/92f598c)), closes [#5](https://github.com/Igmat/baset/issues/5) + + + + ## [0.4.1](https://github.com/Igmat/baset/compare/v0.4.0...v0.4.1) (2018-01-24) diff --git a/packages/baset/package.json b/packages/baset/package.json index 5fee61c5..5ab447bd 100644 --- a/packages/baset/package.json +++ b/packages/baset/package.json @@ -1,6 +1,6 @@ { "name": "baset", - "version": "0.4.1", + "version": "0.5.0", "description": "Tool for testing using baseline strategy.", "keywords": [ "baset", @@ -24,13 +24,13 @@ "prepublish": "node ./scripts/prepublish.js" }, "dependencies": { - "baset-cli": "^0.4.1", - "baset-plugin-export": "^0.4.1" + "baset-cli": "^0.5.0", + "baset-plugin-export": "^0.5.0" }, "devDependencies": { "@types/node": "^9.3.0" }, "yargs": { - "dot-notation": false + "dot-notation": false } } diff --git a/tests/sample-project/CHANGELOG.md b/tests/sample-project/CHANGELOG.md index 7743b0f5..2f669f4b 100644 --- a/tests/sample-project/CHANGELOG.md +++ b/tests/sample-project/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Features + +* **solution:** plugins architecture initial implementation ([92f598c](https://github.com/Igmat/baset/commit/92f598c)), closes [#5](https://github.com/Igmat/baset/issues/5) + + + + ## [0.4.1](https://github.com/Igmat/baset/compare/v0.4.0...v0.4.1) (2018-01-24) diff --git a/tests/sample-project/package.json b/tests/sample-project/package.json index 27fed728..1b8184a7 100644 --- a/tests/sample-project/package.json +++ b/tests/sample-project/package.json @@ -1,6 +1,6 @@ { "name": "sample-project", - "version": "0.4.1", + "version": "0.5.0", "private": true, "description": "", "main": "index.js", @@ -11,7 +11,7 @@ "author": "", "license": "MIT", "devDependencies": { - "baset": "^0.4.1", - "baset-plugin-export": "^0.4.1" + "baset": "^0.5.0", + "baset-plugin-export": "^0.5.0" } } diff --git a/tests/typescript-project/CHANGELOG.md b/tests/typescript-project/CHANGELOG.md index 7743b0f5..828dd527 100644 --- a/tests/typescript-project/CHANGELOG.md +++ b/tests/typescript-project/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/Igmat/baset/compare/v0.4.1...v0.5.0) (2018-01-26) + + +### Bug Fixes + +* **plugin-ts:** using ts-node instead of manual tsc calls ([5292042](https://github.com/Igmat/baset/commit/5292042)), closes [#6](https://github.com/Igmat/baset/issues/6) + + + + ## [0.4.1](https://github.com/Igmat/baset/compare/v0.4.0...v0.4.1) (2018-01-24) diff --git a/tests/typescript-project/package.json b/tests/typescript-project/package.json index b8e107bd..b40d61b9 100644 --- a/tests/typescript-project/package.json +++ b/tests/typescript-project/package.json @@ -1,6 +1,6 @@ { "name": "typescript-project", - "version": "0.4.1", + "version": "0.5.0", "private": true, "description": "", "main": "index.js", @@ -11,9 +11,9 @@ "author": "", "license": "MIT", "devDependencies": { - "typescript": "^2.6.2", - "baset": "^0.4.1", - "baset-plugin-export": "^0.4.1", - "baset-plugin-ts": "^0.4.1" + "baset": "^0.5.0", + "baset-plugin-export": "^0.5.0", + "baset-plugin-ts": "^0.5.0", + "typescript": "^2.6.2" } }