Skip to content

Commit

Permalink
Release version 3.0.0
Browse files Browse the repository at this point in the history
This version is a breaking change because it updates to Sponge API
version 8. This change is not backwards-compatible with older Sponge API
versions.

Other Metrics classes do not not have breaking-changes.
  • Loading branch information
Bastian committed Jan 26, 2022
1 parent 390d4c3 commit e001b24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base/src/main/java/org/bstats/MetricsBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class MetricsBase {
/**
* The version of the Metrics class.
*/
public static final String METRICS_VERSION = "2.2.2-SNAPSHOT";
public static final String METRICS_VERSION = "3.0.0";

private static final ScheduledExecutorService scheduler =
Executors.newScheduledThreadPool(1, task -> new Thread(task, "bStats-Metrics"));
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = 2.2.2-SNAPSHOT
version = 3.0.0

0 comments on commit e001b24

Please sign in to comment.