diff --git a/CHANGELOG.md b/CHANGELOG.md index 686c3b0..540b9d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 0.1.0 (24-03-2023) + +- chore(commit): add commit lint to project (#29) by @jitiendran in https://github.com/arclix/core/pull/30 +- fix(readme): resize arclix icon in readme file (#31) by @jitiendran in https://github.com/arclix/core/pull/32 +- fix(name): update create project class name case (#34) by @jitiendran in https://github.com/arclix/core/pull/35 +- fix(template): remove extra '.' from component template (#36) by @jitiendran in https://github.com/arclix/core/pull/37 +- feat(config)!: generate config file for arclix (#33) by @jitiendran in https://github.com/arclix/core/pull/38 +- fix(config)!: add trailing / to defaultPath in config.json (#39) by @jitiendran in https://github.com/arclix/core/pull/40 + ## 0.0.10 (14-03-2023) - Changing core functions to OOPS class and static methods by @aaraamuthan in https://github.com/arclix/core/pull/16 diff --git a/package.json b/package.json index 754419c..4ab7641 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "type": "git", "url": "https://github.com/arclix/core.git" }, - "version": "0.0.10", + "version": "0.1.0", "description": "An Open Source CLI for React.JS", "main": "dist/index.js", "type": "module", diff --git a/src/index.ts b/src/index.ts index 625f469..b202951 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,7 +18,7 @@ const checkProjectName = (projectName: string): boolean => { }; program.version( - "ARCLIX v0.0.10", + "ARCLIX v0.1.0", "-v --version", "Displays the version of Arclix in use", ); @@ -27,7 +27,7 @@ program .command(Command.CREATE) .description("Creates React project in the current directory") .action(async (_str, options) => { - log("\n" + primaryChalk.italic.bold("ARCLIX v0.0.10")); + log("\n" + primaryChalk.italic.bold("ARCLIX v0.1.0")); emptyLine(); const projectName = options.args[0]; @@ -71,7 +71,7 @@ generate .option("-f, --flat", "Generates components without parent folder.") .option("-p, --path ", "Generates components based on the path.") .action((componentName: string, options: OptionValues) => { - log("\n" + primaryChalk.italic.bold("ARCLIX v0.0.10")); + log("\n" + primaryChalk.italic.bold("ARCLIX v0.1.0")); emptyLine(); generateComponentInstance.generateProject(componentName, options); });