chore(version): bump to v0.2.0 #10

Merged
cafkafk merged 8 commits from dev into main 2023-07-07 06:13:59 +02:00
3 changed files with 4 additions and 6 deletions
Showing only changes of commit 93d747b41a - Show all commits

View file

@ -1,9 +1,9 @@
#+title: Roadmap
* 0.2.0 (maybe)
- [-] Links in categories?
- [ ] Fix category with no links
- [ ] Refactor
- [X] Links in categories?
- [X] Fix category with no links
- [-] Refactor
* 0.1.2
- [X] Implement Quiet flag
* 0.1.1

View file

@ -54,8 +54,6 @@ pub enum RepoFlags {
/// Represents the config.toml file.
///
/// For diagrams of the underlying architecture, consult ARCHITECHTURE.md
///
///
#[derive(Eq, PartialEq, Debug, Serialize, Deserialize)]
pub struct Config {
/// map of all categories

View file

@ -116,7 +116,7 @@ fn main() {
mod config {
use crate::*;
use git::RepoFlags::{Clone, Push};
use git::{Category, GitRepo, Link};
use git::{Category, GitRepo};
use relative_path::RelativePath;
use std::collections::HashMap;
use std::env::current_dir;