diff --git a/CHANGELOG.md b/CHANGELOG.md
index d557f0e..ef08622 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [4.0.2] - 2024-09-21
+
+### Changed
+
+- Upgraded dev dependencies
+
+### Fixed
+
+- Attachment regex to allow more formats to be matched [#260](https://github.com/Pustur/whatsapp-chat-parser/issues/260)
+
## [4.0.1] - 2024-08-14
### Changed
@@ -301,6 +311,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
+[4.0.2]: https://github.com/Pustur/whatsapp-chat-parser/compare/4.0.1...4.0.2
[4.0.1]: https://github.com/Pustur/whatsapp-chat-parser/compare/4.0.0...4.0.1
[4.0.0]: https://github.com/Pustur/whatsapp-chat-parser/compare/3.2.3...4.0.0
[3.2.3]: https://github.com/Pustur/whatsapp-chat-parser/compare/3.2.2...3.2.3
diff --git a/README.md b/README.md
index a738769..df52004 100644
--- a/README.md
+++ b/README.md
@@ -73,7 +73,7 @@ You can also use the [jsDelivr CDN](https://www.jsdelivr.com/package/npm/whatsap
```html
-
+
```
## Message structure
diff --git a/package-lock.json b/package-lock.json
index 468ac43..4a3d95a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "whatsapp-chat-parser",
- "version": "4.0.1",
+ "version": "4.0.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "whatsapp-chat-parser",
- "version": "4.0.1",
+ "version": "4.0.2",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.6.0",
diff --git a/package.json b/package.json
index 391edf8..f895e19 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "whatsapp-chat-parser",
- "version": "4.0.1",
+ "version": "4.0.2",
"description": "A package to parse WhatsApp chats with Node.js or in the browser 💬",
"type": "module",
"main": "dist/index.cjs",