Skip to content

Commit 102d16a

Browse files
authored
Add support for eclipse 4.20 (#148)
1 parent 7d9aa76 commit 102d16a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGES.md

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

33
## [Unreleased]
4+
### Added
5+
- Eclipse `4.20.0` aka `2021-06` ([new and noteworthy](https://www.eclipse.org/eclipse/news/4.20/)).
6+
47
### Fixed
58
* Added support for using Goomph (pde bootstrap) with Gradle `6.7` and newer ([#147](https://github.com/diffplug/goomph/pull/147))
69

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

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

62-
public static final String LATEST = "4.19.0";
62+
public static final String LATEST = "4.20.0";
6363

6464
public static EclipseRelease latestOfficial() {
6565
return official(LATEST);
@@ -122,11 +122,12 @@ private static EclipseRelease officialReleaseMaybe(String version) {
122122
case "4.17.0": return root + "4.17/R-4.17-202009021800/";
123123
case "4.18.0": return root + "4.18/R-4.18-202012021800/";
124124
case "4.19.0": return root + "4.19/R-4.19-202103031800/";
125+
case "4.20.0": return root + "4.20/R-4.20-202106111600/";
125126
// less-specific versions
126127
case "3.5": case "3.6": case "3.7": case "3.8":
127128
case "4.2": case "4.3": case "4.4": case "4.5":
128129
case "4.6": case "4.7": case "4.8": case "4.9":
129-
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":
130+
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":
130131
return root + v + "/";
131132
default: return null;
132133
}

0 commit comments

Comments
 (0)