diff --git a/CHANGELOG.md b/CHANGELOG.md
index 540b9d0..5c47094 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 0.1.1 (29-03-2023)
+
+- test(config): add tests for generate config feature (#43) by @jitiendran in https://github.com/arclix/core/pull/44
+- chore(readme): update node.js link and remove public/img folder (#45, #46) by @jitiendran in https://github.com/arclix/core/pull/47
+- feat(config): create a command to generate config file (#48) by @jitiendran in https://github.com/arclix/core/pull/50
+
## 0.1.0 (24-03-2023)
- chore(commit): add commit lint to project (#29) by @jitiendran in https://github.com/arclix/core/pull/30
diff --git a/package.json b/package.json
index ffe2b99..f3f4680 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"type": "git",
"url": "https://github.com/arclix/core.git"
},
- "version": "0.1.0",
+ "version": "0.1.1",
"description": "An Open Source CLI with Creation and Component Generation for React.",
"main": "dist/index.js",
"type": "module",
diff --git a/src/index.ts b/src/index.ts
index 70cbf29..07a6a08 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -8,7 +8,7 @@ import { OptionValues, program } from "commander";
import { Command, AliasCommand } from "./types/enum.js";
import { log, emptyLine, primaryChalk, spinner } from "./utilities/utility.js";
-const version = "ARCLIX v0.1.0";
+const version = "ARCLIX v0.1.1";
const createProjectInstance = CreateProject.getInstance();
const generateComponentInstance = GenerateComponent.getInstance();
const generateConfigFileInstance = GenerateConfigFile.getInstance();