Skip to content

Commit

Permalink
update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
voliol committed Jul 6, 2023
1 parent 911f563 commit 5cf82f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/com/dabomstew/pkrandom/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

public class Version {
// TODO: come up with some clever way of dealing with versions, and the V branch.
public static final int VERSION = 323; // Increment by 1 for new version. Updated for 4.6.0 + V0.9.1.
public static final String VERSION_STRING = "4.6.0 + V0.9.1";
public static final int VERSION = 324; // Increment by 1 for new version. Updated for 4.6.0 + V0.9.1.
public static final String VERSION_STRING = "4.6.0 + V0.9.2";

public static final Map<Integer,String> oldVersions = setupVersionsMap();

Expand Down Expand Up @@ -64,6 +64,7 @@ private static Map<Integer,String> setupVersionsMap() {
map.put(320, "4.5.1");
map.put(321, "4.6.0");
map.put(322, "4.6.0 + V0.9.0");
map.put(323, "4.6.0 + V0.9.1");

// Latest version - when version is updated, add the old version as an explicit put
map.put(VERSION, VERSION_STRING);
Expand Down

0 comments on commit 5cf82f6

Please sign in to comment.