File tree 2 files changed +7
-3
lines changed
src/main/java/com/diffplug/gradle/pde
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Goomph releases
2
2
3
3
## [ 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/ ) )
4
7
5
8
## [ 4.2.0] - 2024-12-02
6
9
### Added
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (C) 2015-2024 DiffPlug
2
+ * Copyright (C) 2015-2025 DiffPlug
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@ public static EclipseRelease official(String version) {
58
58
}
59
59
}
60
60
61
- public static final String LATEST = "4.34 .0" ;
61
+ public static final String LATEST = "4.35 .0" ;
62
62
63
63
public static EclipseRelease latestOfficial () {
64
64
return official (LATEST );
@@ -136,6 +136,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
136
136
case "4.32.0" : return root + "4.32/R-4.32-202406010610/" ;
137
137
case "4.33.0" : return root + "4.33/R-4.33-202409030240/" ;
138
138
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/" ;
139
140
// less-specific versions
140
141
case "3.5" : case "3.6" : case "3.7" : case "3.8" :
141
142
case "4.2" : case "4.3" : case "4.4" : case "4.5" :
@@ -146,7 +147,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
146
147
case "4.22" : case "4.23" : case "4.24" : case "4.25" :
147
148
case "4.26" : case "4.27" : case "4.28" : case "4.29" :
148
149
case "4.30" : case "4.31" : case "4.32" : case "4.33" :
149
- case "4.34" :
150
+ case "4.34" : case "4.35" :
150
151
return root + v + "/" ;
151
152
default : return null ;
152
153
}
You can’t perform that action at this time.
0 commit comments