File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed
Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 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"
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" ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const pkg = require("../package.json");
1111Sentry . init ( {
1212 dsn :
1313 "https://55c913cc3d394f71ba669fda095698fd@o202486.ingest.sentry.io/5254191" ,
14- release : "0.9.0 " ,
14+ release : "0.9.1 " ,
1515} ) ;
1616
1717import {
@@ -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 ) => {
You can’t perform that action at this time.
0 commit comments