diff --git a/FtcDashboard/dash/package.json b/FtcDashboard/dash/package.json index 14f990539..98643da72 100644 --- a/FtcDashboard/dash/package.json +++ b/FtcDashboard/dash/package.json @@ -1,6 +1,6 @@ { "name": "ftc-dashboard", - "version": "0.4.9", + "version": "0.4.10", "private": true, "dependencies": { "@headlessui/react": "^1.7.2", diff --git a/build.gradle b/build.gradle index 5e60c55f9..3dc3fe09f 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ */ buildscript { - ext.dashboard_version = '0.4.9' + ext.dashboard_version = '0.4.10' ext.checkstyle_version = '8.18' repositories { diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 805db493c..d015e7f0d 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.9'`. +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.10'`. Note: If you're using OpenRC or have non-standard SDK dependencies, add the following exclusion. ```groovy -implementation('com.acmerobotics.dashboard:dashboard:0.4.9') { +implementation('com.acmerobotics.dashboard:dashboard:0.4.10') { exclude group: 'org.firstinspires.ftc' } ```