Skip to content

Commit

Permalink
Mezz fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRandomLabs committed Jul 2, 2018
1 parent deeba6f commit 8c17f76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,11 @@ static Map<String, String> getMezzChangelog(CurseFile oldFile, CurseFile newFile
}

if(line.startsWith("v")) {
if(version == null) {
version = newVersion;
continue;
}

final String currentVersion = line.substring(1);

if(version.equals(currentVersion)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import static com.therandomlabs.utils.logging.Logging.getLogger;

public final class ChangelogGenerator {
public static final String VERSION = "1.9.4";
public static final String VERSION = "1.9.5";

private static final String NEWLINE = IOConstants.LINE_SEPARATOR;

Expand Down

0 comments on commit 8c17f76

Please sign in to comment.