From bb5d5a824da57ea7052e8786187e599f4aabac42 Mon Sep 17 00:00:00 2001 From: Stephen Steneker Date: Tue, 17 Oct 2023 12:40:07 +1100 Subject: [PATCH] 1.8.8 / 2023-10-17 ================== * Add distro detection for KDE Neon (based on Ubuntu LTS) --- History.md | 4 ++++ bin/m | 3 ++- package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index f121416..1c16de5 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,7 @@ +1.8.8 / 2023-10-17 +================== + * Add distro detection for KDE Neon (based on Ubuntu LTS) + 1.8.7 / 2023-09-27 ================== * Use "curl -s" (silent) instead of "curl -#" (@mpobrien) diff --git a/bin/m b/bin/m index 4ea6d1f..ff02a09 100755 --- a/bin/m +++ b/bin/m @@ -39,7 +39,7 @@ CACHE_SRC=${M_CACHE_SRC:-$M_DIR/cache-src.json} CACHE_EXPIRY=${M_CACHE_EXPIRY:-3600} # m version -VERSION="1.8.7" +VERSION="1.8.8" # # Log the given @@ -911,6 +911,7 @@ get_distro_and_arch() { centos) distro_id="rhel" ;; redhatenterpriseserver) distro_id="rhel" ;; rocky) distro_id="rhel" ;; + neon) distro_id="ubuntu" ;; esac distro="$distro_id-$distro_version" diff --git a/package.json b/package.json index 8aeca00..78bb04e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "m", - "version": "1.8.7", + "version": "1.8.8", "description": "MongoDB version management", "homepage": "https://github.com/aheckmann/m", "bugs": "https://github.com/aheckmann/m/issues",