Skip to content

Commit

Permalink
Add support for latest eclipse 4.34.
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Dec 2, 2024
1 parent 745bfe5 commit 80d4e93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Goomph releases

## [Unreleased]
### Added
- Add support for latest Eclipse versions. ([#216](https://github.com/diffplug/goomph/pull/216))
- Eclipse `4.34.0` aka `2024-12` ([new and noteworthy](https://eclipse.dev/eclipse/news/4.34/))

## [4.1.0] - 2024-09-20
### Added
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/diffplug/gradle/pde/EclipseRelease.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static EclipseRelease official(String version) {
}
}

public static final String LATEST = "4.33.0";
public static final String LATEST = "4.34.0";

public static EclipseRelease latestOfficial() {
return official(LATEST);
Expand Down Expand Up @@ -135,6 +135,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
case "4.31.0": return root + "4.31/R-4.31-202402290520/";
case "4.32.0": return root + "4.32/R-4.32-202406010610/";
case "4.33.0": return root + "4.33/R-4.33-202409030240/";
case "4.34.0": return root + "4.34/R-4.34-202411201800/";
// 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":
Expand All @@ -145,6 +146,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
case "4.22": case "4.23": case "4.24": case "4.25":
case "4.26": case "4.27": case "4.28": case "4.29":
case "4.30": case "4.31": case "4.32": case "4.33":
case "4.34":
return root + v + "/";
default: return null;
}
Expand Down

0 comments on commit 80d4e93

Please sign in to comment.