Skip to content

Commit 37f3f85

Browse files
committed
Release version 1.2.0
1 parent b2281e3 commit 37f3f85

3 files changed

Lines changed: 7 additions & 13 deletions

File tree

README.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FastBoard
22
[![Java CI](https://github.com/MrMicky-FR/FastBoard/actions/workflows/build.yml/badge.svg)](https://github.com/MrMicky-FR/FastBoard/actions/workflows/build.yml)
3-
[![Sonatype Snapshots](https://img.shields.io/nexus/s/fr.mrmicky/fastboard?label=Sonatype%20snapshots&server=https%3A%2F%2Fs01.oss.sonatype.org)](pom.xml)
3+
[![Maven Central](https://img.shields.io/maven-central/v/fr.mrmicky/fastboard.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22fr.mrmicky%22%20AND%20a:%22fastboard%22)
44
[![Discord](https://img.shields.io/discord/390919659874156560.svg?colorB=5865f2&label=Discord&logo=discord&logoColor=white)](https://discord.gg/q9UwaBT)
55

66
Lightweight packet-based scoreboard API for Bukkit plugins, with 1.7.10 to 1.17 support.
@@ -55,16 +55,9 @@ Lightweight packet-based scoreboard API for Bukkit plugins, with 1.7.10 to 1.17
5555
<dependency>
5656
<groupId>fr.mrmicky</groupId>
5757
<artifactId>fastboard</artifactId>
58-
<version>1.2.0-SNAPSHOT</version>
58+
<version>1.2.0</version>
5959
</dependency>
6060
</dependencies>
61-
62-
<repositories>
63-
<repository>
64-
<id>sonatype-oss</id>
65-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
66-
</repository>
67-
</repositories>
6861
```
6962

7063
### Gradle
@@ -75,11 +68,11 @@ plugins {
7568
}
7669
7770
repositories {
78-
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
71+
mavenCentral()
7972
}
8073
8174
dependencies {
82-
implementation 'fr.mrmicky:fastboard:1.2.0-SNAPSHOT'
75+
implementation 'fr.mrmicky:fastboard:1.2.0'
8376
}
8477
8578
shadowJar {

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>fr.mrmicky</groupId>
88
<artifactId>fastboard</artifactId>
9-
<version>1.2.0-SNAPSHOT</version>
9+
<version>1.2.0</version>
1010

1111
<name>FastBoard</name>
1212
<description>Lightweight packet-based scoreboard API for Bukkit plugins.</description>
@@ -23,6 +23,7 @@
2323
<developer>
2424
<name>MrMicky</name>
2525
<email>git@mrmicky.fr</email>
26+
<url>https://mrmicky.fr</url>
2627
</developer>
2728
</developers>
2829

src/main/java/fr/mrmicky/fastboard/FastBoard.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
* The project is on <a href="https://github.com/MrMicky-FR/FastBoard">GitHub</a>.
5151
*
5252
* @author MrMicky
53-
* @version 1.2.0-SNAPSHOT
53+
* @version 1.2.0
5454
*/
5555
public class FastBoard {
5656

0 commit comments

Comments
 (0)