diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ca43b7..e756f32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,31 @@ # Changelog +## 1.0.0 +_22 August 2020_ + +**Breaking** +- Rename `--global` flag to `--machine` +- Rename `add` command to `link` + +**Additions** +- New `update` command to change the name or real path of existing links +- `open ` will open the real directory of a specific link +- CI: test building also on Windows and macOS + +**Changes** +- Show an error if a required argument is missing +- `link --name`: strip spaces from the name alias end +- Prevent possible panics by providing default values +- Improve scope names +- `list`: minor optimization +- Huge improvements and simplifications under the hood +- Reduce scheduled CI frequency + +**Fixes** +- `link --name`: ignore the flag if the name alias consits of spaces + + ## 0.8.0 _19 July 2020_ diff --git a/symlinker.v b/symlinker.v index 4850cf4..1344383 100644 --- a/symlinker.v +++ b/symlinker.v @@ -15,7 +15,7 @@ const ( fn main() { mut cmd := Command{ name: 'symlinker' - version: '0.8.0' + version: '1.0.0' disable_flags: true sort_commands: false } diff --git a/v.mod b/v.mod index ade6b4f..c7714c5 100644 --- a/v.mod +++ b/v.mod @@ -1,9 +1,9 @@ Module { name: 'symlinker', - description: 'Utility to manage symlinks', + description: 'Utility tool to manage symlinks in the PATH.', author: 'Lukas Neubert ', license: 'MIT', repo_url: 'https://github.com/Serkonda/symlinker', - version: '0.8.0', + version: '1.0.0', dependencies: [] }