Skip to content

Commit cb5e42b

Browse files
committed
Add 4.29
1 parent e4643aa commit cb5e42b

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Goomph releases
22

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

57
## [3.42.2] - 2023-07-12
68
### Fixed

src/main/java/com/diffplug/gradle/pde/EclipseRelease.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static EclipseRelease official(String version) {
5858
}
5959
}
6060

61-
public static final String LATEST = "4.28.0";
61+
public static final String LATEST = "4.29.0";
6262

6363
public static EclipseRelease latestOfficial() {
6464
return official(LATEST);
@@ -130,6 +130,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
130130
case "4.26.0": return root + "4.26/R-4.26-202211231800/";
131131
case "4.27.0": return root + "4.27/R-4.27-202303020300/";
132132
case "4.28.0": return root + "4.28/R-4.28-202306050440/";
133+
case "4.29.0": return root + "4.29/R-4.29-202309031000/";
133134
// less-specific versions
134135
case "3.5": case "3.6": case "3.7": case "3.8":
135136
case "4.2": case "4.3": case "4.4": case "4.5":
@@ -138,7 +139,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
138139
case "4.14": case "4.15": case "4.16": case "4.17":
139140
case "4.18": case "4.19": case "4.20": case "4.21":
140141
case "4.22": case "4.23": case "4.24": case "4.25":
141-
case "4.26": case "4.27": case "4.28":
142+
case "4.26": case "4.27": case "4.28": case "4.29":
142143
return root + v + "/";
143144
default: return null;
144145
}

0 commit comments

Comments
 (0)