Skip to content

Commit

Permalink
1.8.8 / 2023-10-17
Browse files Browse the repository at this point in the history
==================
 * Add distro detection for KDE Neon (based on Ubuntu LTS)
  • Loading branch information
stennie committed Oct 17, 2023
1 parent 6f42983 commit bb5d5a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 2 additions & 1 deletion bin/m
Original file line number Diff line number Diff line change
Expand Up @@ -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 <msg ...>
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit bb5d5a8

Please sign in to comment.