Skip to content

Commit

Permalink
v0.4.16 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrott committed Sep 9, 2024
1 parent c37c0ac commit c05ae37
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

buildscript {
ext.dashboard_version = '0.4.15'
ext.dashboard_version = '0.4.16'
ext.checkstyle_version = '8.18'

repositories {
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ftc-dashboard",
"version": "0.4.15",
"version": "0.4.16",
"private": true,
"dependencies": {
"@headlessui/react": "^1.7.2",
Expand Down
4 changes: 2 additions & 2 deletions docs/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```
Expand Down

0 comments on commit c05ae37

Please sign in to comment.