diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 66e19cf6..0a0ee43d 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,11 +1,27 @@
+
+## [v0.0.2](https://github.com/omarluq/stimulus-store/compare/v0.0.1...v0.0.2) 2024-01-30
+
+### Bug Fixes
+
+* fix npm pack
+
+
+
## [v0.0.1](https://github.com/omarluq/stimulus-store/compare/v0.0.1-beta.1...v0.0.1) 2024-01-30
+
+### Bug Fixes
+
+* remove extra run from test
+* github actions test workflow changes
+
### Features
* preserve initial value on store class and introduce `reset` function for controller
* add docsify documentation site
+* convert md docs to static site, docsify is magic 💫
diff --git a/docs/README.md b/docs/README.md
index a61bfdf6..584c33ff 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -25,9 +25,9 @@
[![Test Coverage](https://api.codeclimate.com/v1/badges/a99a88d28ad37a79dbf6/test_coverage)](https://codeclimate.com/github/omarluq/stimulus-store/test_coverage)
[![npm version](https://badge.fury.io/js/stimulus-store.svg)](https://npmjs.com/package/stimulus-store)
[![npm downloads](https://img.shields.io/npm/dm/stimulus-store.svg)](https://npmjs.com/package/stimulus-store)
- [![Bundle Size](https://img.shields.io/bundlephobia/minzip/stimulus-store@0.0.1)](https://bundlephobia.com/result?p=stimulus-store@0.0.1)
- [![Bundle Min](https://img.shields.io/bundlephobia/min/stimulus-store@0.0.1)](https://bundlephobia.com/result?p=stimulus-store@0.0.1)
- [![Tree-shaking size](https://badgen.net/bundlephobia/tree-shaking/stimulus-store@0.0.1)](https://bundlephobia.com/result?p=stimulus-store@0.0.1)
+ [![Bundle Size](https://img.shields.io/bundlephobia/minzip/stimulus-store@0.0.2)](https://bundlephobia.com/result?p=stimulus-store@0.0.2)
+ [![Bundle Min](https://img.shields.io/bundlephobia/min/stimulus-store@0.0.2)](https://bundlephobia.com/result?p=stimulus-store@0.0.2)
+ [![Tree-shaking size](https://badgen.net/bundlephobia/tree-shaking/stimulus-store@0.0.2)](https://bundlephobia.com/result?p=stimulus-store@0.0.2)
[![Top Language](https://img.shields.io/github/languages/top/omarluq/stimulus-store)](https://github.com/omarluq/stimulus-store)
[![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/omarluq/stimulus-store)](https://github.com/omarluq/stimulus-store)
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/omarluq/stimulus-store)
diff --git a/docs/SECURITY.md b/docs/SECURITY.md
index 7ad167f0..c3eb7a32 100644
--- a/docs/SECURITY.md
+++ b/docs/SECURITY.md
@@ -8,7 +8,8 @@ Use this section to tell people about which versions of your project are current
| ------- | ------------------ |
| 0.0.1-beta.1 | :x: |
| 0.0.1-beta | :x: |
-| 0.0.1 | :white_check_mark: |
+| 0.0.1 | :x: |
+| 0.0.2 | :white_check_mark: |
## Reporting a Vulnerability
diff --git a/package.json b/package.json
index 72774f69..4d26bcb2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "stimulus-store",
- "version": "0.0.1",
+ "version": "0.0.2",
"description": "Lightweight state management for Stimulus.js",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",