From ecf6c6ba3b02bbe8a02499bc9072783e4bd49850 Mon Sep 17 00:00:00 2001 From: Ryan Brott Date: Fri, 8 Sep 2023 18:44:31 -0700 Subject: [PATCH] v0.4.12 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 2c41b80d3..02cc58043 100644 --- a/FtcDashboard/dash/package.json +++ b/FtcDashboard/dash/package.json @@ -1,6 +1,6 @@ { "name": "ftc-dashboard", - "version": "0.4.11", + "version": "0.4.12", "private": true, "dependencies": { "@headlessui/react": "^1.7.2", diff --git a/README.md b/README.md index f62860aac..918eb62a2 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.11'` +3. In the `dependencies` section, add `implementation 'com.acmerobotics.dashboard:dashboard:0.4.12'` 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.11') { + implementation('com.acmerobotics.dashboard:dashboard:0.4.12') { exclude group: 'org.firstinspires.ftc' } ``` diff --git a/build.gradle b/build.gradle index 1455aba18..bb217c88c 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ */ buildscript { - ext.dashboard_version = '0.4.11' + ext.dashboard_version = '0.4.12' ext.checkstyle_version = '8.18' repositories { diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 54859a0c7..565a8e6e2 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.11'`. +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.12'`. Note: If you're using OpenRC or have non-standard SDK dependencies, add the following exclusion. ```groovy -implementation('com.acmerobotics.dashboard:dashboard:0.4.11') { +implementation('com.acmerobotics.dashboard:dashboard:0.4.12') { exclude group: 'org.firstinspires.ftc' } ```