Skip to content

Commit dc8cb5f

Browse files
author
alexlee-dev
committed
📦 v0.9.1
1 parent a338295 commit dc8cb5f

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.1] - 2020-06-02
9+
10+
### ✨ Website
11+
12+
### Added
13+
14+
- Demo Website
15+
16+
### Changed
17+
18+
### Removed
19+
20+
### Fixed
21+
822
## [0.9.0] - 2020-06-01
923

1024
### 📝 Clerical Adjustments

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-cli-application",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "A bootstrapper for creating a cli application with Node.",
55
"bin": {
66
"create-cli-application": "./index.js"
@@ -29,7 +29,7 @@
2929
"bugs": {
3030
"url": "https://github.com/alexlee-dev/create-cli-application/issues"
3131
},
32-
"homepage": "https://github.com/alexlee-dev/create-cli-application#readme",
32+
"homepage": "https://create-cli-application.herokuapp.com/",
3333
"devDependencies": {
3434
"@types/clear": "^0.1.0",
3535
"@types/commander": "^2.12.2",

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const pkg = require("../package.json");
1111
Sentry.init({
1212
dsn:
1313
"https://55c913cc3d394f71ba669fda095698fd@o202486.ingest.sentry.io/5254191",
14-
release: "0.9.0",
14+
release: "0.9.1",
1515
});
1616

1717
import {
@@ -47,7 +47,7 @@ const main = async (): Promise<void> => {
4747
* The program that parses the initial user input
4848
*/
4949
const program = new commander.Command("create-cli-application")
50-
.version("0.9.0")
50+
.version("0.9.1")
5151
.arguments("<application-name>")
5252
.usage(`${chalk.blueBright("<application-name>")} [options]`)
5353
.action((name) => {

0 commit comments

Comments
 (0)