From 6a314190024fe0afbbade51ef0793f33eb22360a Mon Sep 17 00:00:00 2001 From: Mingwei Zhang Date: Fri, 28 Jun 2024 13:06:49 -0700 Subject: [PATCH] prepare 0.6.0 release --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7418759..35dd293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## v0.6.0 - 2024-06-28 + +### Highlights + +* `monocle time` now supports querying multiple time strings in a single query +* `monocle search` with `--sqlite-path` now adds found messages to the progress bar during search +* `monocle search` now shows the collector IDs in the results, included in the plaintext, json output as well as the + sqlite database +* `monocle search` now supports exporting to MRT files using `--mrt-path` parameter + ## v0.5.5 - 2024-03-29 ### Highlights diff --git a/Cargo.toml b/Cargo.toml index 7f4b3b1..9c66c1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "monocle" -version = "0.5.5" +version = "0.6.0" authors = ["Mingwei Zhang "] edition = "2021" readme = "README.md" @@ -32,7 +32,7 @@ serde_json = "1.0" chrono = "0.4" chrono-humanize = "0.2" anyhow = "1.0" -tabled = "0.14" +tabled = "0.15.0" config = { version = "0.13", features = ["toml"] } dirs = "5" rusqlite = { version = "0.31", features = ["bundled"] }