Skip to content

Commit 5fc1c09

Browse files
committed
docs: update installation instructions to remove beta references and use stable version
1 parent fcbe614 commit 5fc1c09

2 files changed

Lines changed: 8 additions & 20 deletions

File tree

src/guide/installation.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ subsystems, and components. It also has an optional hardware module that
1212
provides built-in, ready-to-use hardware commands for almost all of your
1313
hardware needs.
1414

15-
::: danger
16-
These docs are for a beta version of NextFTC.
17-
There may be unexpected bugs and changes.
18-
Please let us know on Discord and GitHub if you find any issues!
19-
:::
20-
2115
## Installation
2216

2317
In the TeamCode `build.gradle`, go to the `dependencies` block.
@@ -28,15 +22,15 @@ Add the following lines:
2822
== .gradle
2923

3024
```groovy
31-
implementation 'dev.nextftc:ftc:1.0.0-beta.3'
32-
implementation 'dev.nextftc:hardware:1.0.0-beta.3' // If you would like to use the hardware module
25+
implementation 'dev.nextftc:ftc:1.0.0'
26+
implementation 'dev.nextftc:hardware:1.0.0' // If you would like to use the hardware module
3327
```
3428

3529
== .gradle.kts
3630

3731
```kotlin
38-
implementation("dev.nextftc:ftc:1.0.0-beta.3")
39-
implementation("dev.nextftc:hardware:1.0.0-beta.3") // If you would like to use the hardware module
32+
implementation("dev.nextftc:ftc:1.0.0")
33+
implementation("dev.nextftc:hardware:1.0.0") // If you would like to use the hardware module
4034
```
4135

4236
:::

src/nextftc/index.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ subsystems, and components. It also has an optional hardware module that
88
provides built-in, ready-to-use hardware commands for almost all of your
99
hardware needs.
1010

11-
::: danger
12-
These docs are for a beta version of NextFTC.
13-
There may be unexpected bugs and changes.
14-
Please let us know on Discord and GitHub if you find any issues!
15-
:::
16-
1711
## Installation
1812

1913
In the TeamCode `build.gradle`, go to the `dependencies` block.
@@ -24,15 +18,15 @@ Add the following lines:
2418
== .gradle
2519

2620
```groovy
27-
implementation 'dev.nextftc:ftc:1.0.0-beta.3'
28-
implementation 'dev.nextftc:hardware:1.0.0-beta.3' // If you would like to use the hardware module
21+
implementation 'dev.nextftc:ftc:1.0.0'
22+
implementation 'dev.nextftc:hardware:1.0.0' // If you would like to use the hardware module
2923
```
3024

3125
== .gradle.kts
3226

3327
```kotlin
34-
implementation("dev.nextftc:ftc:1.0.0-beta.3")
35-
implementation("dev.nextftc:hardware:1.0.0-beta.3") // If you would like to use the hardware module
28+
implementation("dev.nextftc:ftc:1.0.0")
29+
implementation("dev.nextftc:hardware:1.0.0") // If you would like to use the hardware module
3630
```
3731

3832
:::

0 commit comments

Comments
 (0)