Skip to content

Commit

Permalink
chore(release): 3.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
NickDJM committed Mar 1, 2024
1 parent cfec091 commit 903542b
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 13 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [3.0.9](https://github.com/NickDJM/accessible-menu/compare/v3.0.8...v3.0.9) (2024-03-01)


### Build System

* **actions:** update checkout to v4 ([f036ac1](https://github.com/NickDJM/accessible-menu/commit/f036ac1cb0de85d0df0a646452cadc7d7e41a9fa))
* bump @commitlint/cli from 17.8.1 to 18.4.3 ([255b300](https://github.com/NickDJM/accessible-menu/commit/255b30003a53577571a13f2d4eefb5aad13df003))
* bump @commitlint/cli from 18.6.1 to 19.0.3 ([315f933](https://github.com/NickDJM/accessible-menu/commit/315f933a22c87ea67650156694659c46047e3a20))
* bump @commitlint/config-conventional from 17.8.1 to 18.4.3 ([60b8568](https://github.com/NickDJM/accessible-menu/commit/60b8568b3df1a6eebe78f5352890c04196ac89eb))
* bump @commitlint/config-conventional from 18.6.2 to 19.0.3 ([18cfecd](https://github.com/NickDJM/accessible-menu/commit/18cfecd347c84c2f4c6cfcbc0ece6f16af232232))
* bump eslint-config-prettier from 8.10.0 to 9.1.0 ([0adc7b7](https://github.com/NickDJM/accessible-menu/commit/0adc7b7a8f01acfec98808cf4df8cc5f95a01eae))
* bump eslint-plugin-jsdoc from 46.10.1 to 48.0.2 ([98bcf4a](https://github.com/NickDJM/accessible-menu/commit/98bcf4a6b87d9f4dfd3582659eaa928b14105866))
* bump husky from 8.0.3 to 9.0.11 ([935a097](https://github.com/NickDJM/accessible-menu/commit/935a097b80a0423457a1a8e338d81d51761aacc3))
* bump lint-staged from 13.3.0 to 15.2.0 ([432c9d9](https://github.com/NickDJM/accessible-menu/commit/432c9d924365e873543b8348b9a2caa713941ac0))
* bump prettier from 2.8.8 to 3.1.1 ([8e2969e](https://github.com/NickDJM/accessible-menu/commit/8e2969e64bb958a2f2335832b3ae830b946a276d))

### [3.0.8](https://github.com/NickDJM/accessible-menu/compare/v3.0.7...v3.0.8) (2023-06-30)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ For learning/prototyping purposes you can use the latest version with:
For production environments, it is recommend to use a specific version to avoid unforseen breaking changes:

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/dist/accessible-menu.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9/dist/accessible-menu.min.js"></script>
```

## Upgrading from version 2 to version 3?
Expand Down Expand Up @@ -77,7 +77,7 @@ import AccessibleMenu from "accessible-menu";
or

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/dist/accessible-menu.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9/dist/accessible-menu.min.js"></script>
```

Once you have **accessible-menu** loaded, declare a new menu object.
Expand Down Expand Up @@ -106,7 +106,7 @@ import { DisclosureMenu } from "accessible-menu";
or

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/dist/disclosure-menu.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9/dist/disclosure-menu.min.js"></script>
```

then
Expand All @@ -127,7 +127,7 @@ import { Menubar } from "accessible-menu";
or

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/dist/menubar.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9/dist/menubar.min.js"></script>
```

then
Expand All @@ -148,7 +148,7 @@ import { Treeview } from "accessible-menu";
or

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].8/dist/treeview.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].9/dist/treeview.min.js"></script>
```

then
Expand Down
2 changes: 1 addition & 1 deletion dist/accessible-menu.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/disclosure-menu.esm.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/disclosure-menu.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/menubar.esm.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/menubar.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/treeview.esm.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/treeview.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accessible-menu",
"version": "3.0.8",
"version": "3.0.9",
"description": "A JavaScript library to help you generate WCAG accessible menus in the DOM.",
"main": "index.js",
"files": [
Expand Down

0 comments on commit 903542b

Please sign in to comment.