diff --git a/build.gradle.kts b/build.gradle.kts
index 18fc65c..1a39323 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -3,5 +3,5 @@ plugins {
}
group = "space.vectrix.flare"
-version = "2.0.0-SNAPSHOT"
+version = "2.0.0"
description = "Useful thread-safe collections with performance in mind."
diff --git a/readme.md b/readme.md
index fef09c4..5d124fd 100644
--- a/readme.md
+++ b/readme.md
@@ -10,7 +10,7 @@ Useful thread-safe collections with performance in mind.
## Building
__Note:__ If you do not have [Gradle] installed then use `./gradlew` for Unix systems or Git Bash and gradlew.bat for Windows systems in place of any 'gradle' command.
-In order to build Flare you simply need to run the `gradle build` command. You can find the compiled JAR file in `./flare/build/libs` or `./flare-fastutil/build/libs` labeled 'flare-1.0.0.jar' or 'flare-fastutil-1.0.0.jar'.
+In order to build Flare you simply need to run the `gradle build` command. You can find the compiled JAR file in `./flare/build/libs` or `./flare-fastutil/build/libs` labeled 'flare-2.0.0.jar' or 'flare-fastutil-2.0.0.jar'.
## Dependency
@@ -21,8 +21,8 @@ repositories {
}
dependencies {
- implementation "space.vectrix.flare:flare:1.0.0"
- implementation "space.vectrix.flare-fastutil:1.0.0"
+ implementation "space.vectrix.flare:flare:2.0.0"
+ implementation "space.vectrix.flare-fastutil:2.0.0"
}
```
@@ -32,12 +32,12 @@ Maven:
space.vectrix.flare
flare
- 1.0.0
+ 2.0.0
space.vectrix.flare
flare-fastutil
- 1.0.0
+ 2.0.0
```