Skip to content

Commit

Permalink
Add support for Eclipse 4.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Sep 14, 2022
1 parent a2ef1c7 commit 9e9e044
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Goomph releases

## [Unreleased]
### Added
- Eclipse `4.25.0` aka `2022-09` ([new and noteworthy](https://www.eclipse.org/eclipse/news/4.25/))

## [3.37.2] - 2022-08-09
### Fixed
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/com/diffplug/gradle/pde/EclipseRelease.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static EclipseRelease official(String version) {
}
}

public static final String LATEST = "4.24.0";
public static final String LATEST = "4.25.0";

public static EclipseRelease latestOfficial() {
return official(LATEST);
Expand Down Expand Up @@ -127,14 +127,15 @@ private static EclipseRelease officialReleaseMaybe(String version) {
case "4.22.0": return root + "4.22/R-4.22-202111241800/";
case "4.23.0": return root + "4.23/R-4.23-202203080310/";
case "4.24.0": return root + "4.24/R-4.24-202206070700/";
case "4.25.0": return root + "4.25/R-4.25-202208311800/";
// less-specific versions
case "3.5": case "3.6": case "3.7": case "3.8":
case "4.2": case "4.3": case "4.4": case "4.5":
case "4.6": case "4.7": case "4.8": case "4.9":
case "4.10": case "4.11": case "4.12": case "4.13":
case "4.14": case "4.15": case "4.16": case "4.17":
case "4.18": case "4.19": case "4.20": case "4.21":
case "4.22": case "4.23": case "4.24":
case "4.22": case "4.23": case "4.24": case "4.25":
return root + v + "/";
default: return null;
}
Expand Down

0 comments on commit 9e9e044

Please sign in to comment.