coliru

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

commit 62f888a5e2afae6f9080ace19c8df37d42bc3a41
parent 899898a414a9df9a2c9b8bef8964f71228528648
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Tue,  9 Jul 2024 15:18:14 -0700

Bump version to 1.0.0

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

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 1.0.0 - 2024-07-08 + +### Added + +- `--host` flag for installing dotfiles on remote machines over SSH +- `--list-tags` flag for listing the tags in a manifest + +### Changed + +- Output is colorized to aid readability +- The `run` command uses `cmd` instead of `powershell` on Windows +- Improved documentation and `--help` output + +### Fixed + +- Prevent `copy` and `link` commands from overwriting dotfiles if the `src` and + `dst` paths are the same +- Nonzero exit codes are now returned when an error occurs + ## 0.2.0 - 2024-06-25 ### Added diff --git a/Cargo.lock b/Cargo.lock @@ -120,7 +120,7 @@ checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" [[package]] name = "coliru" -version = "0.2.0" +version = "1.0.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coliru" -version = "0.2.0" +version = "1.0.0" edition = "2021" [dependencies]