Version bumped to `1.1.0`

release v1.1.0
Tomek Wójcik 2024-01-19 22:49:57 +01:00
parent 95934ee91a
commit 293c75456e
4 changed files with 12 additions and 3 deletions

View File

@ -6,7 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.1.0] - 2024-01-19
### Added
- Support for comments (`#`) in parts files.
- Explicitly inherit paths from `PATH` environment variable.
- Ability to deduplicate output paths.
## [1.0.2] - 2023-12-05
### Added
- Initial release.

View File

@ -1,4 +1,4 @@
VERSION = 1.0.2
VERSION = 1.1.0
PREFIX ?= /usr/local
OS != uname -o

View File

@ -1,6 +1,6 @@
# Package
version = "1.0.2"
version = "1.1.0"
author = "Tomek Wójcik <contact@bthlabs.pl>"
description = "pathsd by BTHLabs"
license = "MIT"

View File

@ -9,7 +9,7 @@ type
output*: seq[string]
errorCode*: ErrorCode
const version = "1.0.2"
const version = "1.1.0"
const usage_string = """usage: pathsd [--version | --help] [-v | -q] [-s shell] search_path ..."""
const version_string = fmt"""pathsd {version}"""
const help_string = fmt"""pathsd {version} by BTHLabs