Skip to content

Commit

Permalink
[GHI-#1] Implement method to return the public API ArcVer version string
Browse files Browse the repository at this point in the history
Signature: + getVersion() : String
  • Loading branch information
arcticicestudio committed Sep 26, 2016
1 parent befa11c commit ce3d6db
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/arcticicestudio/nord/Nord.java
Original file line number Diff line number Diff line change
Expand Up @@ -229,4 +229,14 @@ public static String rgb(final Color color) {
public Color get() {
return COLOR;
}

/**
* Returns the <a href="https://github.com/arcticicestudio/arcver">ArcVer</a> version of the public API.
*
* @return the ArcVer version string
* @see <a href="http://semver.org">SemVer</a>
*/
public String getVersion() {
return "0.0.0";
}
}

0 comments on commit ce3d6db

Please sign in to comment.