coliru

A minimal, flexible, dotfile installer
git clone https://git.ashermorgan.net/coliru/
Log | Files | Refs | README

commit 8f976aeef62773d38d856da0081c3b76b3cd28a5
parent 757f1c0fda08bdb4055b25526383a67a21b0284a
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Tue, 25 Jun 2024 18:00:58 -0700

Bump version to 0.2.0

Diffstat:
MCHANGELOG.md | 18++++++++++++++++++
MCargo.lock | 2+-
MCargo.toml | 2+-
3 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.2.0 - 2024-06-25 + +### Added + +- `link` command to create soft/hard links with `--copy` flag to fallback to + `copy` command +- `run` command to run scripts + +### Changed + +- Improved output formatting + +### Fixed + +- Bug where `--dry-run` flag didn't print all commands +- Issue causing Windows builds to fail +- Bug that prevented manifests in the current directory from being loaded + ## 0.1.0 - 2024-06-20 ### Added diff --git a/Cargo.lock b/Cargo.lock @@ -105,7 +105,7 @@ checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" [[package]] name = "coliru" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "serde", diff --git a/Cargo.toml b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coliru" -version = "0.1.0" +version = "0.2.0" edition = "2021" [dependencies]