Skip to content

Commit

Permalink
Merge pull request #402 from icflorescu/next
Browse files Browse the repository at this point in the history
Fix peer deps version numbers & update changelog
  • Loading branch information
icflorescu committed Aug 10, 2023
2 parents 53fec7d + d88d389 commit 2d179d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
The following is a list of notable changes to the Mantine DataTable component.
Minor versions that are not listed in the changelog are bug fixes and small improvements.

## 2.9.9 (2023-08-10)

- Fix `@mantine/core` & `@mantine/hooks` peer dependencies version numbers in `package.json` to `>=6 <=6.0.17 || >=6.0.19`

## 2.9.8 (2023-08-10)

- Try to lock `@mantine/hooks` and `@mantine/core` peer dependencies to `!= 6.0.18`, to avoid a [bug](https://github.com/icflorescu/mantine-datatable/issues/398) introduced by the [`use-element-size` hook](https://mantine.dev/hooks/use-element-size/)
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mantine-datatable-docs",
"version": "2.9.8",
"version": "2.9.9",
"description": "Docs website for mantine-datatable; see ../package/package.json for more info",
"private": true,
"scripts": {
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": "mantine-datatable-turborepo",
"version": "2.9.8",
"version": "2.9.9",
"description": "Monorepo for mantine-datatable; see package/package.json for more info",
"private": true,
"workspaces": [
Expand Down
6 changes: 3 additions & 3 deletions package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mantine-datatable",
"version": "2.9.8",
"version": "2.9.9",
"description": "The dependency-free datatable component for Mantine UI, featuring asynchronous data loading support, pagination, multple rows selection, column sorting, custom cell data rendering, row context menu, row expansion and more",
"keywords": [
"mantine",
Expand Down Expand Up @@ -66,8 +66,8 @@
"typescript": "^5.1.6"
},
"peerDependencies": {
"@mantine/core": ">=6 <=6.0.17 >= 6.0.19",
"@mantine/hooks": ">=6 <=6.0.17 >= 6.0.19",
"@mantine/core": ">=6 <=6.0.17 || >=6.0.19",
"@mantine/hooks": ">=6 <=6.0.17 || >=6.0.19",
"react": ">=18"
}
}

0 comments on commit 2d179d7

Please sign in to comment.