From 3fcc2745b5a1799625d5b354df09e774dc1650ab Mon Sep 17 00:00:00 2001 From: forkless Date: Tue, 2 Jun 2026 17:42:12 +0200 Subject: [PATCH] bump to v0.3.0 --- CHANGELOG.md | 7 +++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c62ee91..8368e08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to NotAlterra are documented in this file. --- -## [v0.2.4] — 2026-06-01 +## [v0.3.0] — 2026-06-02 ### Added - SECURITY.md with vulnerability disclosure policy @@ -31,7 +31,7 @@ All notable changes to NotAlterra are documented in this file. - **Auto-scan for save folders** (`Locate save files` menu item / `discovery.rs` module). Scans user profiles and system directories, which is a privacy concern. Shows a deprecation notice once per session. Scheduled for removal - in v0.3.0 — use `Set save folder` instead. + in v0.4.0 — use `Set save folder` instead. ### Changed - Zero compiler warnings @@ -49,6 +49,9 @@ All notable changes to NotAlterra are documented in this file. `discover_save_folders()`. They use the cached path or error with a message. - **`is_cloud_path()` removed** — was only used by the discovery-era cloud detection path. +- **Zero clippy warnings on CI** — fixed `collapsible_match` (6 instances), + `empty_line_after_doc_comments`, and `manual_is_multiple_of` lints from + rustc 1.95 nightly. ### Notes - Working copy diverged from remote after signing the previous commit diff --git a/Cargo.lock b/Cargo.lock index 8fc4d34..bfbd9bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -495,7 +495,7 @@ dependencies = [ [[package]] name = "notalterra" -version = "0.2.3" +version = "0.3.0" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index b5d4c35..b324fce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notalterra" -version = "0.2.3" +version = "0.3.0" edition = "2021" authors = ["NotAlterra"] license = "MIT"