You've already forked pathsd
Version bumped to 1.1.0
This commit is contained in:
@@ -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.
|
||||
|
||||
2
Makefile
2
Makefile
@@ -1,4 +1,4 @@
|
||||
VERSION = 1.0.2
|
||||
VERSION = 1.1.0
|
||||
PREFIX ?= /usr/local
|
||||
|
||||
OS != uname -o
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user