From 5e127eccda27a3e50a93db1675a4e30458a8463a Mon Sep 17 00:00:00 2001 From: Ryan Brott Date: Wed, 28 Sep 2022 22:27:29 -0700 Subject: [PATCH] v0.4.6 release --- FtcDashboard/build.gradle | 2 +- docs/gettingstarted.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FtcDashboard/build.gradle b/FtcDashboard/build.gradle index 1680709b1..1c6abe5bc 100644 --- a/FtcDashboard/build.gradle +++ b/FtcDashboard/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.dashboard_version = '0.4.5' + ext.dashboard_version = '0.4.6' } plugins { diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 3d9e9da27..83cf57fdc 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.5'`. +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.6'`. Note: If you're using OpenRC or have non-standard SDK dependencies, add the following exclusion. ```groovy -implementation('com.acmerobotics.dashboard:dashboard:0.4.5') { +implementation('com.acmerobotics.dashboard:dashboard:0.4.6') { exclude group: 'org.firstinspires.ftc' } ```