M CHANGELOG.md => CHANGELOG.md +10 -0
@@ 2,6 2,16 @@
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
- - -
+## v0.9.2 - 2023-02-20
+#### Miscellaneous Chores
+- update dependencies - (0de14fd) - Conrad Hoffmann
+#### Refactoring
+- state cache overhaul - (7a80ebd) - Conrad Hoffmann
+#### Tests
+- introduce `test-full` feature for some tests - (a589b32) - Conrad Hoffmann
+
+- - -
+
## v0.9.1 - 2023-02-10
#### Bug Fixes
- don't drop INBOX state changes in root state - (bfa1265) - Conrad Hoffmann
M Cargo.lock => Cargo.lock +2 -2
@@ 1273,7 1273,7 @@ dependencies = [
[[package]]
name = "vomit-sync"
-version = "0.9.1"
+version = "0.9.2"
dependencies = [
"chrono",
"imap",
@@ 1295,7 1295,7 @@ dependencies = [
[[package]]
name = "vsync"
-version = "0.9.1"
+version = "0.9.2"
dependencies = [
"clap",
"log",
M Cargo.toml => Cargo.toml +1 -1
@@ 1,6 1,6 @@
[package]
name = "vomit-sync"
-version = "0.9.1"
+version = "0.9.2"
authors = ["Conrad Hoffmann <ch@bitfehler.net>"]
description = "A library for IMAP to maildir synchronization"
readme = "README.md"
M cli/Cargo.toml => cli/Cargo.toml +3 -3
@@ 1,6 1,6 @@
[package]
name = "vsync"
-version = "0.9.1"
+version = "0.9.2"
authors = ["Conrad Hoffmann <ch@bitfehler.net>"]
description = "Synchronization between IMAP and local maildir"
readme = "README.md"
@@ 12,7 12,7 @@ categories = ["command-line-utilities", "email"]
edition = "2021"
[dependencies]
-vomit-sync = { path = "..", version = "0.9.1" }
+vomit-sync = { path = "..", version = "0.9.2" }
vomit-config = "0.2.0"
clap = {version = "4", features = ["derive"]}
log = "0.4"
@@ 20,4 20,4 @@ serde = {version = "1.0", features = ["derive"]}
simplelog = "0.12.0"
[dev-dependencies]
-tempfile = "3">
\ No newline at end of file
+tempfile = "3"