From d8f1c9d06aee109fbda61992291b0943a86105c9 Mon Sep 17 00:00:00 2001 From: Stennie Steneker Date: Sun, 17 Mar 2024 15:06:53 +1100 Subject: [PATCH] 1.9.0 / 2024-03-17 ================== * Fix: #78: Add version-based support for native arm64 Database Tools on macOS * Fix: #95: Add info on installing mongosh via brew for macOS users --- History.md | 5 +++++ bin/m | 2 +- package.json | 15 ++++++++++----- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/History.md b/History.md index a2b5d3f..5fefb82 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,8 @@ +1.9.0 / 2024-03-17 +================== + * Fix: #78: Add version-based support for native arm64 Database Tools on macOS + * Fix: #95: Add info on installing mongosh via brew for macOS users + 1.8.9 / 2023-10-19 ================== * Remove shell prompt from install examples so it doesn't get copied diff --git a/bin/m b/bin/m index 407da8f..9709f0f 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.9.0-dev" +VERSION="1.9.0" # # Log the given diff --git a/package.json b/package.json index 28a0ff0..6b04633 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,12 @@ { "name": "m", - "version": "1.8.9", + "version": "1.9.0", "description": "MongoDB version management", "homepage": "https://github.com/aheckmann/m", "bugs": "https://github.com/aheckmann/m/issues", - "bin": { "m": "./bin/m" }, + "bin": { + "m": "./bin/m" + }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, @@ -16,10 +18,13 @@ "mongoose" ], "author": "Aaron Heckmann ", - "contributors":[ + "contributors": [ "TJ Holowaychuk ", - "Stephen Steneker " + "Stennie Steneker " ], "license": "MIT", - "repository": { "type": "git", "url": "git://github.com/aheckmann/m.git" } + "repository": { + "type": "git", + "url": "git://github.com/aheckmann/m.git" + } }