Skip to content

Commit

Permalink
chore(release): 4.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
NickDJM committed Jun 20, 2023
1 parent a4488e8 commit a203dbd
Show file tree
Hide file tree
Showing 13 changed files with 1,863 additions and 1,103 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

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.

## [4.0.0-beta.1](https://github.com/NickDJM/accessible-menu/compare/v4.0.0-beta.0...v4.0.0-beta.1) (2023-06-20)


### Features

* add support for hoverDelay and transitions on pointerenter ([1a19215](https://github.com/NickDJM/accessible-menu/commit/1a19215b366cd73449d1579a80e6f2790588fb28)), closes [#211](https://github.com/NickDJM/accessible-menu/issues/211)


### Documentation

* update test docs to account for top-link disclosures ([de0a72b](https://github.com/NickDJM/accessible-menu/commit/de0a72b0720dad2590136e0fd2dff39aee330c3f))


### Continuous Integration

* **codeql:** upgrade to v2 ([6d14c98](https://github.com/NickDJM/accessible-menu/commit/6d14c986a5e298be90eb6e42521a594b15dc16bc)), closes [#214](https://github.com/NickDJM/accessible-menu/issues/214)


### Build System

* bump eslint-plugin-jsdoc from 39.9.1 to 40.0.0 ([056c0cd](https://github.com/NickDJM/accessible-menu/commit/056c0cdf14c697873ea4f2c1fd615d329dc3aa16))
* bump eslint-plugin-jsdoc from 40.3.0 to 43.0.0 ([95e2b48](https://github.com/NickDJM/accessible-menu/commit/95e2b48adc970be3e60add08e4667860bf5472d2))
* **eslint:** upgrade options for jsdoc plugin ([f3d96c5](https://github.com/NickDJM/accessible-menu/commit/f3d96c5b98dd96504f00917b1eef51cfc0e7915e))
* **npm:** ensure latest version of vitest to fix issues with githun action tests ([a4488e8](https://github.com/NickDJM/accessible-menu/commit/a4488e848ae74fc873b61a7618ab9ea0ca2d6e41))

## [4.0.0-beta.0](https://github.com/NickDJM/accessible-menu/compare/v3.0.5...v4.0.0-beta.0) (2023-02-09)


Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,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].0/dist/accessible-menu.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/accessible-menu.min.js"></script>
```

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

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

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

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

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

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

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

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

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

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

then
Expand Down
Loading

0 comments on commit a203dbd

Please sign in to comment.