diff --git a/CHANGELOG.md b/CHANGELOG.md
index 73b1546..e8ea239 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## 0.1.5 (28-05-2023)
+
+- feat(generate)!: add css preprocessor support in config (#97) by @jitiendran in https://github.com/arclix/core/pull/98
+- chore: update lint rule and formatting by @jitiendran in https://github.com/arclix/core/pull/105
+- chore: update readme file with updated links by @jitiendran in https://github.com/arclix/core/pull/106
+- feat(generate)!: add dynamic component type support in config (#95) by @jitiendran in https://github.com/arclix/core/pull/107
+- refactor(core)!: remove create module from arclix by @jitiendran in https://github.com/arclix/core/pull/108
+
## 0.1.4 (18-05-2023)
- fix(generate): cwd bug in component generation (#88) by @jitiendran in https://github.com/arclix/core/pull/89
diff --git a/package-lock.json b/package-lock.json
index 9650493..7e1d902 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "arclix",
- "version": "0.1.4",
+ "version": "0.1.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "arclix",
- "version": "0.1.4",
+ "version": "0.1.5",
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0",
diff --git a/package.json b/package.json
index 01c4a87..8f99d4b 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"type": "git",
"url": "https://github.com/arclix/core.git"
},
- "version": "0.1.4",
+ "version": "0.1.5",
"description": "An Open Source CLI with Creation and Component Generation for React.",
"homepage": "https://arclix.github.io/arclix-docs",
"main": "dist/index.js",
diff --git a/src/index.ts b/src/index.ts
index 9c64ea2..0febb25 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -7,7 +7,7 @@ import type { CLIOptions } from './types/type.js';
import { Command, AliasCommand } from './types/type.js';
import { log, emptyLine, primaryChalk } from './utilities/utility.js';
-const version = 'ARCLIX v0.1.4';
+const version = 'ARCLIX v0.1.5';
const generateComponentInstance = new GenerateComponent();
const generateConfigFileInstance = new GenerateConfigFile();