From d22e2b77dd5d7f078d816333ca83994ddf99b5c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Sun, 28 Apr 2024 10:49:23 +0200 Subject: [PATCH] Add Ubuntu 24.04 support --- NEWS.md | 4 ++++ lib/linux-platform-map.js | 17 +++++++++++++++-- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 22 insertions(+), 5 deletions(-) diff --git a/NEWS.md b/NEWS.md index badd454..4e69eb5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,8 @@ +# 2.3.10 + +* Support Ubuntu 24.04. + # 2.3.9 * Support Rtools44, R 4.4.0 and later now requires Rtools44. diff --git a/lib/linux-platform-map.js b/lib/linux-platform-map.js index 162bcbb..32d49f2 100644 --- a/lib/linux-platform-map.js +++ b/lib/linux-platform-map.js @@ -47,7 +47,20 @@ platforms = [ 'version': '22.04', 'codename': 'Jammy Jellyfish', 'docker': 'ubuntu:22.04', - 'eol': '2027-05-31', + 'eol': '2027-04-31', + 'ppm-binaries': true, + 'retired': false, + 'last-build': null + }, + { + 'id': 'ubuntu-2404', + 'aliases': ['ubuntu-24.04', 'noble'], + 'name': 'Ubuntu', + 'url': 'https://ubuntu.com/', + 'version': '24.04', + 'codename': 'Noble Numbat', + 'docker': 'ubuntu:24.04', + 'eol': '2034-04-31', 'ppm-binaries': true, 'retired': false, 'last-build': null @@ -270,7 +283,7 @@ platforms = [ 'eol': '2024-11-12', 'ppm-binaries': false, 'retired': false, - 'last-build': null + 'last-build': null }, // Distros implemented as other distros above diff --git a/package-lock.json b/package-lock.json index 7309463..69e3769 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rversions", - "version": "2.3.9", + "version": "2.3.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rversions", - "version": "2.3.9", + "version": "2.3.10", "license": "ISC", "dependencies": { "@octokit/graphql": "^5.0.5", diff --git a/package.json b/package.json index eb8116f..cde22f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rversions", - "version": "2.3.9", + "version": "2.3.10", "description": "Query the current and past R versions", "main": "index.js", "scripts": {