Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
serkonda7 committed Aug 22, 2020
1 parent 4570710 commit f3fdf6d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <link>` 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_

Expand Down
2 changes: 1 addition & 1 deletion symlinker.v
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
4 changes: 2 additions & 2 deletions v.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Module {
name: 'symlinker',
description: 'Utility to manage symlinks',
description: 'Utility tool to manage symlinks in the PATH.',
author: 'Lukas Neubert <[email protected]>',
license: 'MIT',
repo_url: 'https://github.com/Serkonda/symlinker',
version: '0.8.0',
version: '1.0.0',
dependencies: []
}

0 comments on commit f3fdf6d

Please sign in to comment.