Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
# Goomph releases

## [Unreleased]
### Added
- Eclipse `4.23.0` aka `2022-02` ([new and noteworthy](https://www.eclipse.org/eclipse/news/4.23/)).

## [3.35.0] - 2022-01-30
### Added
Expand Down
7 changes: 4 additions & 3 deletions src/main/java/com/diffplug/gradle/pde/EclipseRelease.java
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2015-2021 DiffPlug
* Copyright (C) 2015-2022 DiffPlug
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand DownExpand Up@@ -59,7 +59,7 @@ public static EclipseRelease official(String version) {
}
}

public static final String LATEST = "4.22.0";
public static final String LATEST = "4.23.0";

public static EclipseRelease latestOfficial() {
return official(LATEST);
Expand DownExpand Up@@ -125,14 +125,15 @@ private static EclipseRelease officialReleaseMaybe(String version) {
case "4.20.0": return root + "4.20/R-4.20-202106111600/";
case "4.21.0": return root + "4.21/R-4.21-202109060500/";
case "4.22.0": return root + "4.22/R-4.22-202111241800/";
case "4.23.0": return root + "4.23/R-4.23-202203080310//";
// 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":
case "4.6": case "4.7": case "4.8": case "4.9":
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": case "4.21":
case "4.22":
case "4.22": case "4.23":
return root + v + "/";
default: return null;
}
Expand Down