Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Update plugin requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusolsson committed Jan 28, 2022
1 parent 897f0c6 commit e8d7200
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

[Full changelog](https://github.com/marcusolsson/grafana-gantt-panel/compare/v0.7.5...v0.8.0)

This release bumps the minimum required Grafana to >=8.0. Grafana 8 introduces a new theming engine for panel plugins.
This release bumps the minimum required Grafana to >=8.1. Grafana 8 introduces a new theming engine for panel plugins.

- If you're running a Grafana version before 8.0, you should stay with v0.7.5.
- If you're running Grafana 8.0 or above, you should update to v0.8.0.
- If you're running Grafana 8.1 or above, you should update to v0.8.0.

## 0.7.5 (2022-01-07)

Expand Down
2 changes: 1 addition & 1 deletion src/ColorEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface Settings {}

interface Props extends StandardEditorProps<ColorMapping[], Settings> {}

export const ColorEditor: React.FC<Props> = ({ value, onChange }) => {
export const ColorEditor = ({ value, onChange }: Props) => {
const theme = useTheme2().v1;

const colors = value || [];
Expand Down
4 changes: 2 additions & 2 deletions src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
},

"dependencies": {
"grafanaDependency": ">=8.0.0",
"grafanaVersion": "8.0.0",
"grafanaDependency": ">=8.1.0",
"grafanaVersion": "8.1.0",
"plugins": []
}
}

0 comments on commit e8d7200

Please sign in to comment.