diff --git a/CHANGELOG.md b/CHANGELOG.md index 705900e..220abf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/ColorEditor.tsx b/src/ColorEditor.tsx index 6d87a44..76b057e 100644 --- a/src/ColorEditor.tsx +++ b/src/ColorEditor.tsx @@ -12,7 +12,7 @@ interface Settings {} interface Props extends StandardEditorProps {} -export const ColorEditor: React.FC = ({ value, onChange }) => { +export const ColorEditor = ({ value, onChange }: Props) => { const theme = useTheme2().v1; const colors = value || []; diff --git a/src/plugin.json b/src/plugin.json index 6fc1d73..113d58a 100644 --- a/src/plugin.json +++ b/src/plugin.json @@ -26,8 +26,8 @@ }, "dependencies": { - "grafanaDependency": ">=8.0.0", - "grafanaVersion": "8.0.0", + "grafanaDependency": ">=8.1.0", + "grafanaVersion": "8.1.0", "plugins": [] } }