Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Igmat committed Jan 17, 2018
1 parent 2d98352 commit 68009e3
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 27 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.2.0"></a>
# [0.2.0](https://github.com/Igmat/baset/compare/v0.1.0...v0.2.0) (2018-01-17)


### Features

* **Core, CLI:** Adding two different commands (test and accept), also introducing yargs to parse ar ([2d98352](https://github.com/Igmat/baset/commit/2d98352))




<a name="0.2.0"></a>
# [0.2.0](https://github.com/Igmat/baset/compare/v0.1.0...v0.2.0) (2018-01-17)


### Features

* **Core, CLI:** Adding two different commands (test and accept), also introducing yargs to parse ar ([2d98352](https://github.com/Igmat/baset/commit/2d98352))




<a name="0.1.0"></a>
# [0.1.0](https://github.com/Igmat/baset/compare/v0.0.1...v0.1.0) (2018-01-17)

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"./packages/*",
"./tests/*"
],
"version": "0.1.0",
"version": "0.2.0",
"commands": {
"publish": {
"allowBranch": "master",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "baset",
"version": "0.1.0",
"version": "0.2.0",
"bin": {
"baset": "./bin/index.js"
},
Expand All @@ -19,7 +19,7 @@
"commit": "git-cz"
},
"dependencies": {
"baset-cli": "^0.1.0"
"baset-cli": "^0.2.0"
},
"devDependencies": {
"@types/node": "^9.3.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/baset-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<a name="0.2.0"></a>
# [0.2.0](https://github.com/Igmat/baset/compare/v0.1.0...v0.2.0) (2018-01-17)


### Features

* **Core, CLI:** Adding two different commands (test and accept), also introducing yargs to parse ar ([2d98352](https://github.com/Igmat/baset/commit/2d98352))




<a name="0.1.0"></a>
# [0.1.0](https://github.com/Igmat/baset/compare/v0.0.1...v0.1.0) (2018-01-17)

Expand Down
4 changes: 2 additions & 2 deletions packages/baset-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "baset-cli",
"version": "0.1.0",
"version": "0.2.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -20,7 +20,7 @@
"typescript": "^2.6.2"
},
"dependencies": {
"baset-core": "^0.1.0",
"baset-core": "^0.2.0",
"glob": "^7.1.2",
"glob-promise": "^3.3.0",
"yargs": "^10.1.1"
Expand Down
11 changes: 11 additions & 0 deletions packages/baset-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<a name="0.2.0"></a>
# [0.2.0](https://github.com/Igmat/baset/compare/v0.1.0...v0.2.0) (2018-01-17)


### Features

* **Core, CLI:** Adding two different commands (test and accept), also introducing yargs to parse ar ([2d98352](https://github.com/Igmat/baset/commit/2d98352))




<a name="0.1.0"></a>
# [0.1.0](https://github.com/Igmat/baset/compare/v0.0.1...v0.1.0) (2018-01-17)

Expand Down
40 changes: 20 additions & 20 deletions packages/baset-core/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "baset-core",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run tslint && tsc",
"watch": "npm run tslint && tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "baset"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^9.3.0",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
}
}
{
"name": "baset-core",
"version": "0.2.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run tslint && tsc",
"watch": "npm run tslint && tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "baset"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^9.3.0",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
}
}
8 changes: 8 additions & 0 deletions tests/sample-project/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.2.0"></a>
# [0.2.0](https://github.com/Igmat/baset/compare/v0.1.0...v0.2.0) (2018-01-17)




**Note:** Version bump only for package sample-project

<a name="0.1.0"></a>
# [0.1.0](https://github.com/Igmat/baset/compare/v0.0.1...v0.1.0) (2018-01-17)

Expand Down
4 changes: 2 additions & 2 deletions tests/sample-project/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-project",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"description": "",
"main": "index.js",
Expand All @@ -10,6 +10,6 @@
"author": "",
"license": "MIT",
"devDependencies": {
"baset": "^0.1.0"
"baset": "^0.2.0"
}
}

0 comments on commit 68009e3

Please sign in to comment.