Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
voliol committed Jan 13, 2024
1 parent 111b20a commit 2d56a8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/com/dabomstew/pkrandom/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@
import java.util.Map;

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

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

Expand Down Expand Up @@ -68,6 +67,7 @@ private static Map<Integer,String> setupVersionsMap() {
map.put(323, "4.6.0 + V0.9.1");
map.put(324, "4.6.0 + V0.9.2");
map.put(325, "4.6.0 + V0.9.3");
map.put(326, "4.6.0 + V0.10.0");

// 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 2d56a8e

Please sign in to comment.