Skip to content

Commit

Permalink
release: 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vectrixdevelops committed Oct 18, 2021
1 parent ca86f60 commit 3dbaa33
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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."
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"
}
```

Expand All @@ -32,12 +32,12 @@ Maven:
<dependency>
<groupId>space.vectrix.flare</groupId>
<artifactId>flare</artifactId>
<version>1.0.0</version>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>space.vectrix.flare</groupId>
<artifactId>flare-fastutil</artifactId>
<version>1.0.0</version>
<version>2.0.0</version>
</dependency>
</dependencies>
```
Expand Down

0 comments on commit 3dbaa33

Please sign in to comment.