Skip to content

Commit 7c088f0

Browse files
chore(release): 0.0.8
1 parent 902c0a1 commit 7c088f0

File tree

6 files changed

+27
-8
lines changed

6 files changed

+27
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.0.8](https://github.com/nitric-dev/cli/compare/v0.0.7...v0.0.8) (2020-10-29)
6+
7+
8+
### Features
9+
10+
* Allow forcing project creation if dir already exists. ([57d4b3f](https://github.com/nitric-dev/cli/commit/57d4b3f4a0aa2b6f0e084b97c26072dc5d9d1528))
11+
* **cli:** Add a make:project functionality. ([f1c47f6](https://github.com/nitric-dev/cli/commit/f1c47f6a0f7f46c80aa696ffda3e732ae742e6d0))
12+
13+
14+
### Bug Fixes
15+
16+
* improve command descriptions in cli ([17d9f01](https://github.com/nitric-dev/cli/commit/17d9f01e8eaee785462e89a4108fff21a44b0e8e))
17+
518
### 0.0.7 (2020-10-28)
619

720

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nitric-cli",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "CLI monorepo for the Nitric framework",
55
"author": "Nitric <https://github.com/nitric-dev>",
66
"scripts": {

packages/base/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nitric/cli",
33
"description": "CLI tool for nitric applications",
4-
"version": "0.0.7",
4+
"version": "0.0.8",
55
"author": "Nitric <https://github.com/nitric-dev>",
66
"bin": {
77
"nitric": "./bin/run"
@@ -69,9 +69,15 @@
6969
"oclif": {
7070
"commands": "./lib/commands",
7171
"topics": {
72-
"make": { "description": "Commands to make new projects and assets." },
73-
"deploy": { "description": "Plugin commands to deploy on supported providers. E.g. `$ nitric plugins:install @nitric/plugin-aws`" },
74-
"down": { "description": "Plugin commands to tear down deployments on supported providers. E.g. `$ nitric plugins:install @nitric/plugin-aws`" }
72+
"make": {
73+
"description": "Commands to make new projects and assets."
74+
},
75+
"deploy": {
76+
"description": "Plugin commands to deploy on supported providers. E.g. `$ nitric plugins:install @nitric/plugin-aws`"
77+
},
78+
"down": {
79+
"description": "Plugin commands to tear down deployments on supported providers. E.g. `$ nitric plugins:install @nitric/plugin-aws`"
80+
}
7581
},
7682
"bin": "nitric",
7783
"plugins": [

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nitric/cli-common",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Common Nitric typings and utility functions",
55
"author": "Nitric <https://github.com/nitric-dev>",
66
"main": "lib/index.js",

packages/plugins/aws/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nitric/plugin-aws",
33
"description": "An AWS plugin for Nitric",
4-
"version": "0.0.7",
4+
"version": "0.0.8",
55
"author": "Nitric <https://github.com/nitric-dev>",
66
"bugs": "https://github.com/nitric-dev/cli/issues",
77
"dependencies": {

packages/plugins/gcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nitric/plugin-gcp",
33
"description": "GCP plugin for Nitric",
4-
"version": "0.0.7",
4+
"version": "0.0.8",
55
"author": "Nitric <https://github.com/nitric-dev>",
66
"bugs": "https://github.com/nitric-dev/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)