From c05ae373dd815f4aafd17a507cb3493347f0b612 Mon Sep 17 00:00:00 2001 From: Ryan Brott Date: Sun, 8 Sep 2024 19:03:53 -0700 Subject: [PATCH] v0.4.16 release --- README.md | 4 ++-- build.gradle | 2 +- client/package.json | 2 +- docs/gettingstarted.md | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ea3ec014f..daaf9312e 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.15'` +3. In the `dependencies` section, add `implementation 'com.acmerobotics.dashboard:dashboard:0.4.16'` 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.15') { + implementation('com.acmerobotics.dashboard:dashboard:0.4.16') { exclude group: 'org.firstinspires.ftc' } ``` diff --git a/build.gradle b/build.gradle index c77c7049d..2c4ed5814 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ */ buildscript { - ext.dashboard_version = '0.4.15' + ext.dashboard_version = '0.4.16' ext.checkstyle_version = '8.18' repositories { diff --git a/client/package.json b/client/package.json index 4454af681..6d1bcb811 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "ftc-dashboard", - "version": "0.4.15", + "version": "0.4.16", "private": true, "dependencies": { "@headlessui/react": "^1.7.2", diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 1660ac642..0c451b53e 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.15'`. +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.16'`. Note: If you're using OpenRC or have non-standard SDK dependencies, add the following exclusion. ```groovy -implementation('com.acmerobotics.dashboard:dashboard:0.4.15') { +implementation('com.acmerobotics.dashboard:dashboard:0.4.16') { exclude group: 'org.firstinspires.ftc' } ```