From e69655399eb7f753dc720c72f4853d30a3ba0ab7 Mon Sep 17 00:00:00 2001 From: Ryan Brott Date: Sun, 5 Nov 2023 16:33:58 -0800 Subject: [PATCH] v0.4.14 release --- FtcDashboard/dash/package.json | 2 +- README.md | 4 ++-- build.gradle | 2 +- docs/gettingstarted.md | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/FtcDashboard/dash/package.json b/FtcDashboard/dash/package.json index 914b64f43..3144d8317 100644 --- a/FtcDashboard/dash/package.json +++ b/FtcDashboard/dash/package.json @@ -1,6 +1,6 @@ { "name": "ftc-dashboard", - "version": "0.4.13", + "version": "0.4.14", "private": true, "dependencies": { "@headlessui/react": "^1.7.2", diff --git a/README.md b/README.md index 3c5927f91..cfeca8dd3 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ Check out our [online documentation](https://acmerobotics.github.io/ftc-dashboar 1. Open [`build.dependencies.gradle`](https://github.com/FIRST-Tech-Challenge/FtcRobotController/blob/master/build.dependencies.gradle) 2. In the `repositories` section, add `maven { url = 'https://maven.brott.dev/' }` -3. In the `dependencies` section, add `implementation 'com.acmerobotics.dashboard:dashboard:0.4.13'` +3. In the `dependencies` section, add `implementation 'com.acmerobotics.dashboard:dashboard:0.4.14'` Please see [GitHub releases page](https://github.com/acmerobotics/ftc-dashboard/releases) for the latest version number 4. If you’re using OpenRC or have non-standard SDK dependencies, add the following exclusion: ``` - implementation('com.acmerobotics.dashboard:dashboard:0.4.13') { + implementation('com.acmerobotics.dashboard:dashboard:0.4.14') { exclude group: 'org.firstinspires.ftc' } ``` diff --git a/build.gradle b/build.gradle index e8b37dfa4..4ea881502 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ */ buildscript { - ext.dashboard_version = '0.4.13' + ext.dashboard_version = '0.4.14' ext.checkstyle_version = '8.18' repositories { diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 2e6c4419b..f792322d8 100644 --- a/docs/gettingstarted.md +++ b/docs/gettingstarted.md @@ -8,11 +8,11 @@ layout: default ### Basic -Open `build.dependencies.gradle`. In the `repositories` section add `maven { url = 'https://maven.brott.dev/' }`, and in the `dependencies` section add `implementation 'com.acmerobotics.dashboard:dashboard:0.4.13'`. +Open `build.dependencies.gradle`. In the `repositories` section add `maven { url = 'https://maven.brott.dev/' }`, and in the `dependencies` section add `implementation 'com.acmerobotics.dashboard:dashboard:0.4.14'`. Note: If you're using OpenRC or have non-standard SDK dependencies, add the following exclusion. ```groovy -implementation('com.acmerobotics.dashboard:dashboard:0.4.13') { +implementation('com.acmerobotics.dashboard:dashboard:0.4.14') { exclude group: 'org.firstinspires.ftc' } ```