From d0d5efc3e34f3d1bce49359283e4db1eb8862abe Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Sat, 1 Jun 2024 13:37:14 +0200 Subject: [PATCH] chore(release): v0.2.0 (#4) ### Added - enable creating items on the same level - add command for quickly creating an item - remove removal of spaces in title - with toggle item - with backend - can get actual available roots - can add items - server can actually create root and sections - abstract commander - with async commands instead of inline mutations phew. - add command pattern - allow async function in command - move core to tui and begin grpc work - add protos - update deps - with basic server ### Fixed - *(deps)* update rust crate serde to v1.0.203 - *(deps)* update rust crate prost to 0.12.6 - *(deps)* update rust crate prost to 0.12.5 - *(deps)* update rust crate serde to 1.0.202 ### Other - *(deps)* update all dependencies - *(deps)* update rust crate itertools to 0.13.0 - move unused imports into cfg - remove unused functions and fix warnings - remove unused variables - fix formatting - refactor out graph created event - let state use either local or backend - remove warnings - remove extra logs Co-authored-by: cuddle-please Reviewed-on: https://git.front.kjuulh.io/kjuulh/hyperlog/pulls/4 --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b48bff..1bda250 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2024-05-25 + +### Added +- enable creating items on the same level +- add command for quickly creating an item +- remove removal of spaces in title +- with toggle item +- with backend +- can get actual available roots +- can add items +- server can actually create root and sections +- abstract commander +- with async commands instead of inline mutations phew. +- add command pattern +- allow async function in command +- move core to tui and begin grpc work +- add protos +- update deps +- with basic server + +### Fixed +- *(deps)* update rust crate serde to v1.0.203 +- *(deps)* update rust crate prost to 0.12.6 +- *(deps)* update rust crate prost to 0.12.5 +- *(deps)* update rust crate serde to 1.0.202 + +### Other +- *(deps)* update all dependencies +- *(deps)* update rust crate itertools to 0.13.0 +- move unused imports into cfg +- remove unused functions and fix warnings +- remove unused variables +- fix formatting +- refactor out graph created event +- let state use either local or backend +- remove warnings +- remove extra logs + ## [0.1.0] - 2024-05-11 ### Added diff --git a/Cargo.toml b/Cargo.toml index 2477c87..698ec9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,4 +23,4 @@ tonic = { version = "0.11.0", features = ["tls", "tls-roots"] } futures = { version = "0.3.30" } [workspace.package] -version = "0.1.0" +version = "0.2.0"