From 6404e5011a58e97465367f24dc3e748db75a80e8 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 28 Apr 2026 18:14:48 +0900 Subject: [PATCH] CHANGELOG.md: add release notes, Cargo.toml: bump version number --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dafd4a7..096ddfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v1.0.1 + +Patch release with some important bug fixes + +### Notable changes + +- `mysql.db.Host` would usually be unset when creating privileges for users, this should be fixed now. + - You might have to manually set this field for rows created with the previous version of muscl to have those privileges work properly. +- Fixed an issue where a few select server responses would refuse to serialize properly, leading to an error message: "No response from server" +- The output of various commands is now being sorted. +- Bump dependencies + ## v1.0.0 - Initial Release This is the initial release of `muscl`. diff --git a/Cargo.toml b/Cargo.toml index e7bb8d4..184aefd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muscl" -version = "1.0.0" +version = "1.0.1" edition = "2024" resolver = "2" license = "BSD-3-Clause"