diff --git a/CHANGELOG.md b/CHANGELOG.md index bde8708..5cbf4c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2.1.1](https://github.com/ninxsoft/mist-cli/releases/tag/v2.1) - 2024-07-09 + +- `mist` now correctly exports firmware URL and installer package metadata - thanks [chilcote](https://github.com/chilcote)! +- `mist` now suppresses update notifications when the `-q` / `--quiet` flag is used - thanks [mattlqx](https://github.com/mattlqx)! +- Fixed a bug that prevented CSV output being displayed / exported correctly - thanks [NorseGaud](https://github.com/NorseGaud)! + ## [2.1](https://github.com/ninxsoft/mist-cli/releases/tag/v2.1) - 2024-06-11 - Added _beta_ support for **macOS Sequoia 15** :tada: diff --git a/Mist/Commands/Mist.swift b/Mist/Commands/Mist.swift index d7f4aca..ea3de33 100644 --- a/Mist/Commands/Mist.swift +++ b/Mist/Commands/Mist.swift @@ -12,7 +12,7 @@ struct Mist: ParsableCommand { static let configuration: CommandConfiguration = .init(abstract: .abstract, discussion: .discussion, version: version(), subcommands: [ListCommand.self, DownloadCommand.self]) /// Current version. - private static let currentVersion: String = "2.1" + private static let currentVersion: String = "2.1.1" /// Visit URL string. private static let visitURLString: String = "Visit \(String.repositoryURL) to grab the latest release of \(String.appName)"