Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelessiet committed Nov 18, 2024
1 parent 35ff1a7 commit 9e66f63
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bert"
version = "0.1.6"
version = "0.1.7"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/backup_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use colored::*;
use dirs::home_dir;
use serde::{Deserialize, Serialize};
use std::fs;
use std::path::{Path, PathBuf};
use std::path::PathBuf;
use std::process::Command;

#[derive(Serialize, Deserialize)]
Expand Down Expand Up @@ -202,7 +202,7 @@ fn get_backup_path(custom_path: Option<&str>) -> Result<PathBuf> {
}

fn get_backup_dir() -> Result<PathBuf> {
let mut backup_dir = home_dir()
let backup_dir = home_dir()
.ok_or_else(|| anyhow::anyhow!("Could not determine home directory"))?
.join(".bert")
.join("backups");
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mod self_update;
#[command(
name = "bert",
author = "Michael Essiet <[email protected]>",
version = "0.1.6",
version = env!("CARGO_PKG_VERSION"),
about = "A friendly cross-platform package assistant built on top of Homebrew",
long_about = "Bert 🐕 is a friendly package assistant that leverages Homebrew's package repository to provide \
cross-platform package management. He automatically handles installation of missing \
Expand Down

0 comments on commit 9e66f63

Please sign in to comment.