From 9c4ef78684b39df72ecca070c609d0d122e5c19b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Nerma?= Date: Tue, 10 May 2022 16:50:58 +0200 Subject: [PATCH] Update crate version --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb8b1f0..ff1d9a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## v0.3.0 (2022-05-10) + +* **NEW:** `export` subcommand +* **NEW:** `path` subcommand to print the path to the database file +* **NEW:** `path --lossily` to print to the path to the database file lossily (if it contains invalid UTF-8 characters) + +* **INTERNAL:** Make database file sorted + +* **FIX:** Don't flush index to disk when no change were made + ## v0.2.0 (2022-05-10) * **BREAKING:** `add ` subcommand doesn't increment registered directories anymore diff --git a/Cargo.lock b/Cargo.lock index 89528af..1a01956 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "jumpy" -version = "0.2.0" +version = "0.3.0" dependencies = [ "clap", "dirs", diff --git a/Cargo.toml b/Cargo.toml index 523f2ec..91d5bd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jumpy" -version = "0.2.0" +version = "0.3.0" edition = "2021" [dependencies]