Skip to content

Commit 24a182a

Browse files
committed
Add support for latest eclipse 4.35.
1 parent 27ff577 commit 24a182a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Diff for: CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Goomph releases
22

33
## [Unreleased]
4+
### Added
5+
- Add support for latest Eclipse versions.
6+
- Eclipse `4.35.0` aka `2025-03` ([new and noteworthy](https://eclipse.dev/eclipse/news/4.35/))
47

58
## [4.2.0] - 2024-12-02
69
### Added

Diff for: src/main/java/com/diffplug/gradle/pde/EclipseRelease.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015-2024 DiffPlug
2+
* Copyright (C) 2015-2025 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@ public static EclipseRelease official(String version) {
5858
}
5959
}
6060

61-
public static final String LATEST = "4.34.0";
61+
public static final String LATEST = "4.35.0";
6262

6363
public static EclipseRelease latestOfficial() {
6464
return official(LATEST);
@@ -136,6 +136,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
136136
case "4.32.0": return root + "4.32/R-4.32-202406010610/";
137137
case "4.33.0": return root + "4.33/R-4.33-202409030240/";
138138
case "4.34.0": return root + "4.34/R-4.34-202411201800/";
139+
case "4.35.0": return root + "4.35/R-4.35-202502280140/";
139140
// less-specific versions
140141
case "3.5": case "3.6": case "3.7": case "3.8":
141142
case "4.2": case "4.3": case "4.4": case "4.5":
@@ -146,7 +147,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
146147
case "4.22": case "4.23": case "4.24": case "4.25":
147148
case "4.26": case "4.27": case "4.28": case "4.29":
148149
case "4.30": case "4.31": case "4.32": case "4.33":
149-
case "4.34":
150+
case "4.34": case "4.35":
150151
return root + v + "/";
151152
default: return null;
152153
}

0 commit comments

Comments
 (0)