diff --git a/CHANGELOG.md b/CHANGELOG.md
index d7d5371..ddfc1fc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
+## [v1.4.2](https://github.com/GeorgianStan/vanilla-context-menu/compare/v1.4.2...v1.4.0) (2022-12-13)
+
+## [v1.4.0](https://github.com/GeorgianStan/vanilla-context-menu/compare/v1.3.0...v1.4.0) (2022-10-29)
+
## [v1.3.0](https://github.com/GeorgianStan/vanilla-context-menu/compare/v1.2.2...v1.3.0) (2022-09-20)
## [v1.2.2](https://github.com/GeorgianStan/vanilla-context-menu/compare/v1.1.0...v1.2.2) (2022-07-15)
diff --git a/README.md b/README.md
index 715712f..254ed56 100644
--- a/README.md
+++ b/README.md
@@ -15,10 +15,10 @@
### Browser CDN
```html
-
+
```
-Where `@1.3.0` is the version that you want to use.
+Where `@1.4.1` is the version that you want to use.
Then anywhere in your JavaScript code you can access the library with `window.VanillaContextMenu` or simply `VanillaContextMenu`.
@@ -159,7 +159,7 @@ updateOptions(configurableOptions: Partial): void
```css
.custom-context-menu-cls {
- width: 150px;
+ width: 100px !important;
font-family: 'Roboto', sans-serif; /* DEFAULT -- font-family: 'Open Sans', sans-serif; */
}
```
diff --git a/package.json b/package.json
index ff009a0..ade1d68 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "vanilla-context-menu",
- "version": "1.4.1",
+ "version": "1.4.2",
"description": "Easily create context menus using vanilla JavaScript and integrate them in any web application",
"main": "./dist/vanilla-context-menu.js",
"types": "./dist/index.d.ts",