Skip to content

Commit

Permalink
chore(release): 2.0.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NickDJM committed Feb 21, 2023
1 parent b5cdda5 commit 406f682
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

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.

## [2.0.0-beta.0](https://github.com/NickDJM/accessible-menu-bootstrap-5/compare/v1.0.2...v2.0.0-beta.0) (2023-02-21)


### ⚠ BREAKING CHANGES

* vite changes the naming convention for the dist files

### Features

* **menu:** implement new top link disclosure menu subclass ([fecb681](https://github.com/NickDJM/accessible-menu-bootstrap-5/commit/fecb681b9a6f48ab35716e6808404cbe284433d7)), closes [#10](https://github.com/NickDJM/accessible-menu-bootstrap-5/issues/10)


### Continuous Integration

* **workflow:** allow workflows to run on all .x branches ([57e7a07](https://github.com/NickDJM/accessible-menu-bootstrap-5/commit/57e7a070d86b7770db311a3db3ba33123801e225))


### Build System

* replace rollup and jest with vite and vitest with demo env ([ced8b93](https://github.com/NickDJM/accessible-menu-bootstrap-5/commit/ced8b93d4c953fa8182577773557d0fa7d69e54d)), closes [#32](https://github.com/NickDJM/accessible-menu-bootstrap-5/issues/32)

### [1.0.2](https://github.com/NickDJM/accessible-menu-bootstrap-5/compare/v1.0.1...v1.0.2) (2023-02-17)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,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/accessible-menu-bootstrap-5@1.0.2/dist/accessible-menu-bs5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@2.0.0-beta.0/dist/accessible-menu-bs5.min.js"></script>
```

## Usage
Expand Down Expand Up @@ -76,7 +76,7 @@ import AccessibleMenu from "accessible-menu-bootstrap-5";
or

```html
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@1.0.2/dist/accessible-menu-bs5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@2.0.0-beta.0/dist/accessible-menu-bs5.min.js"></script>
```

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

```html
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@1.0.2/dist/disclosure-menu-bs5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@2.0.0-beta.0/dist/disclosure-menu-bs5.min.js"></script>
```

then
Expand All @@ -124,7 +124,7 @@ import { Bootstrap5Menubar } from "accessible-menu-bootstrap-5";
or

```html
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@1.0.2/dist/menubar-bs5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@2.0.0-beta.0/dist/menubar-bs5.min.js"></script>
```

then
Expand Down Expand Up @@ -164,7 +164,7 @@ import { Bootstrap5Treeview } from "accessible-menu-bootstrap-5";
or

```html
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@1.0.2/dist/treeview-bs5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/accessible-menu-bootstrap-5@2.0.0-beta.0/dist/treeview-bs5.min.js"></script>
```

then
Expand Down
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-bootstrap-5",
"version": "1.0.2",
"version": "2.0.0-beta.0",
"description": "A JavaScript library to help you generate WAI-ARIA accessible menus with in the DOM using Bootstrap 5.",
"main": "index.js",
"files": [
Expand Down

0 comments on commit 406f682

Please sign in to comment.