Skip to content

Commit

Permalink
Add 4.29
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Sep 28, 2023
1 parent e4643aa commit cb5e42b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
@@ -1,6 +1,8 @@
# Goomph releases

## [Unreleased]
### Added
- Eclipse `4.29.0` aka `2023-09` ([new and noteworthy](https://eclipse.dev/eclipse/news/4.29/))

## [3.42.2] - 2023-07-12
### Fixed
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/com/diffplug/gradle/pde/EclipseRelease.java
Expand Up @@ -58,7 +58,7 @@ public static EclipseRelease official(String version) {
}
}

public static final String LATEST = "4.28.0";
public static final String LATEST = "4.29.0";

public static EclipseRelease latestOfficial() {
return official(LATEST);
Expand Down Expand Up @@ -130,6 +130,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
case "4.26.0": return root + "4.26/R-4.26-202211231800/";
case "4.27.0": return root + "4.27/R-4.27-202303020300/";
case "4.28.0": return root + "4.28/R-4.28-202306050440/";
case "4.29.0": return root + "4.29/R-4.29-202309031000/";
// 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 @@ -138,7 +139,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
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.25":
case "4.26": case "4.27": case "4.28":
case "4.26": case "4.27": case "4.28": case "4.29":
return root + v + "/";
default: return null;
}
Expand Down

0 comments on commit cb5e42b

Please sign in to comment.