chore: fixed up code, roadmap for bump

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
Christina Sørensen 2023-07-07 06:04:23 +02:00 committed by Christina Sørensen
parent a4e3527973
commit c36000e7a0
3 changed files with 4 additions and 6 deletions

View file

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

View file

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

View file

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