diff --git a/FtcDashboard/dash/package.json b/FtcDashboard/dash/package.json index 3144d8317..4454af681 100644 --- a/FtcDashboard/dash/package.json +++ b/FtcDashboard/dash/package.json @@ -1,6 +1,6 @@ { "name": "ftc-dashboard", - "version": "0.4.14", + "version": "0.4.15", "private": true, "dependencies": { "@headlessui/react": "^1.7.2", diff --git a/README.md b/README.md index 7d947bfbc..501509323 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.14'` +3. In the `dependencies` section, add `implementation 'com.acmerobotics.dashboard:dashboard:0.4.15'` 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.14') { + implementation('com.acmerobotics.dashboard:dashboard:0.4.15') { exclude group: 'org.firstinspires.ftc' } ``` diff --git a/build.gradle b/build.gradle index 4ea881502..c77c7049d 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ */ buildscript { - ext.dashboard_version = '0.4.14' + ext.dashboard_version = '0.4.15' ext.checkstyle_version = '8.18' repositories { diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index f792322d8..1660ac642 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.14'`. +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'`. Note: If you're using OpenRC or have non-standard SDK dependencies, add the following exclusion. ```groovy -implementation('com.acmerobotics.dashboard:dashboard:0.4.14') { +implementation('com.acmerobotics.dashboard:dashboard:0.4.15') { exclude group: 'org.firstinspires.ftc' } ```